2 - Single Axis Tracking Yearly Simulation¶

Method Gencumsky has been modified to divide the yearly-cumulative sky into various skies, each one representing the cumulative irradiance for the hours at which the tracker is at a certain angle. For faster running, for a tracker that moves between 45 and -45 degrees limit angle, if only positions every 5 degrees are considered (45, 40, 35 .... -4-, -45), then only 18 skies (and 18 simulations) will be run for the whole year.

Example of the hemisphere cumulative sky

This procedure was presented in:

Ayala Pelaez S, Deline C, Greenberg P, Stein JS, Kostuk RK. Model and validation of single-axis tracking with bifacial PV. IEEE J Photovoltaics. 2019;9(3):715–21. https://ieeexplore.ieee.org/document/8644027 and https://www.nrel.gov/docs/fy19osti/72039.pdf (pre-print, conference version)

Steps:

  1. Create a folder for your simulation, and load bifacial_radiance
  2. Create a Radiance Object, set Albedo and Download Weather Files
  3. Set Tracking Angles
  4. Generate the Sky
  5. Define a Module type
  6. Create the scene
  7. Combine Ground, Sky and Scene Objects
  8. Analyze and get results
  9. Clean Results

And finally: Condensed instructions

1. Create a folder for your simulation, and load bifacial_radiance¶

First let's set the folder where the simulation will be saved. By default, this is the TEMP folder in the bifacial_radiance distribution.

The lines below find the location of the folder relative to this Jupyter Journal. You can alternatively point to an empty directory (it will open a load GUI Visual Interface) or specify any other directory in your computer, for example:

testfolder = r'C:\Users\sayala\Documents\RadianceScenes\Tutorials\Journal2'

In [1]:
import os
from pathlib import Path

testfolder = Path().resolve().parent.parent / 'bifacial_radiance' / 'TEMP' / 'Tutorial_02'

# Another option using relative address; for some operative systems you might need '/' instead of '\'
# testfolder = os.path.abspath(r'..\..\bifacial_radiance\TEMP')  

print ("Your simulation will be stored in %s" % testfolder)

if not os.path.exists(testfolder):
    os.makedirs(testfolder)
Your simulation will be stored in C:\Users\sayala\Documents\GitHub\bifacial_radiance\bifacial_radiance\TEMP\Tutorial_02

This will load bifacial_radiance and other libraries from python that will be useful for this Jupyter Journal:

In [2]:
from bifacial_radiance import *
import numpy as np

2. Create a Radiance Object, Set Albedo, and Download and Load Weather File¶

These are all repeated steps from Tutorial 1, so condensing:

In [3]:
# Create a RadianceObj 'object' named bifacial_example. no whitespace allowed
demo = RadianceObj('tutorial_2', path = str(testfolder))  

albedo = 0.25
demo.setGround(albedo)

# Pull in meteorological data using pyEPW for any global lat/lon
epwfile = demo.getEPW(lat = 37.5, lon = -77.6)  # This location corresponds to Richmond, VA.
# Read in the weather data pulled in above. 
metdata = demo.readWeatherFile(weatherFile = epwfile) 
path = C:\Users\mbrown2\Documents\GitHub\bifacial_radiance\bifacial_radiance\TEMP\Tutorial_02
Loading albedo, 1 value(s), 0.250 avg
1 nonzero albedo values.
Getting weather file: USA_VA_Richmond.724010_TMY2.epw
 ... OK!
8760 line in WeatherFile. Assuming this is a standard hourly WeatherFile for the year for purposes of saving Gencumulativesky temporary weather files in EPW folder.
Coercing year to 2021
Saving file EPWs\metdata_temp.csv, # points: 8760
Calculating Sun position for Metdata that is right-labeled  with a delta of -30 mins. i.e. 12 is 11:30 sunpos

TRACKING Workflow¶

Until now, all the steps looked the same from Tutorial 1. The following section follows similar steps, but the functions are specific for working with single axis tracking.

3. Set Tracking Angles¶

This function will read the weather file, and based on the sun position it will calculate the angle the tracker should be at for each hour. It will create metdata files for each of the tracker angles considered.

In [4]:
limit_angle = 5 # tracker rotation limit angle. Setting it ridiculously small so this runs faster.
angledelta = 5 # sampling between the limit angles. 
backtrack = True
gcr = 0.33
cumulativesky = True # This is important for this example!
trackerdict = demo.set1axis(metdata = metdata, limit_angle = limit_angle, backtrack = backtrack, 
                            gcr = gcr, cumulativesky = cumulativesky)
Saving file EPWs\1axis_-5.0.csv, # points: 2214
Saving file EPWs\1axis_0.0.csv, # points: 57
Saving file EPWs\1axis_5.0.csv, # points: 2096

Setting backtrack to True is important in this step, so the trackers correct for self-shading when following the sun at high zenith angles.

4. Generate the Sky¶

This will create the skies for each sub-metdata file created by set1axis.

In [5]:
trackerdict = demo.genCumSky1axis()
message: There were 2174 sun up hours in this climate file
Total Ibh/Lbh: 0.000000
Created skyfile skies\1axis_-5.0.rad
message: There were 50 sun up hours in this climate file
Total Ibh/Lbh: 0.000000
Created skyfile skies\1axis_0.0.rad
message: There were 2065 sun up hours in this climate file
Total Ibh/Lbh: 0.000000
Created skyfile skies\1axis_5.0.rad

This is how one of the cumulative sky .cal files associated with each .rad file generated look like:

Example of the gencumsky1axis

Each of the values corresponds to the cumulative rradiance of one of those patches, for when the tracker is at that specific angle through the year.

5. Define the Module type¶

Let's make a more interesting module in this example. Let's do 2-up configuration in portrait, with the modules rotating around a 10 centimeter round torque tube. Let's add a gap between the two modules in 2-UP of 10 centimeters, as well as gap between the torque tube and the modules of 5 centimeters. Along the row, the modules are separated only 2 centimeters for this example. The torquetube is painted Metal_Grey in this example (it's one of the materials available in Ground.rad, and it is 40% reflective).

Note that starting with bifacial_radiance version 0.4.0, the module object has a new geometry generation function addTorquetube. The old way of passing a properly formatted dictionary as a keyword argument will still work too.

In [6]:
x = 0.984  # meters
y = 1.7    # meters
moduletype = 'test-module'
numpanels = 2
zgap = 0.05
ygap = 0.10
xgap = 0.02

module = demo.makeModule(name=moduletype, x=x, y=y,xgap=xgap, ygap=ygap, zgap=zgap, 
                numpanels=numpanels)

module.addTorquetube(diameter=0.1, material='Metal_Grey', tubetype='round') # New torquetube generation function
print()
print(module)
print()
print(module.torquetube)
Module Name: test-module
Module test-module updated in module.json
Pre-existing .rad file objects\test-module.rad will be overwritten

Module test-module updated in module.json
Pre-existing .rad file objects\test-module.rad will be overwritten


{'x': 0.984, 'y': 1.7, 'z': 0.02, 'modulematerial': 'black', 'scenex': 1.004, 'sceney': 3.5, 'scenez': 0.1, 'numpanels': 2, 'bifi': 1, 'text': '! genbox black test-module 0.984 1.7 0.02 | xform -t -0.492 -1.75 0.1 -a 2 -t 0 1.8 0\r\n! genrev Metal_Grey tube1 t*1.004 0.05 32 | xform -ry 90 -t -0.502 0 0', 'modulefile': 'objects\\test-module.rad', 'glass': False, 'offsetfromaxis': 0.1, 'xgap': 0.02, 'ygap': 0.1, 'zgap': 0.05}

{'diameter': 0.1, 'tubetype': 'round', 'material': 'Metal_Grey', 'visible': True}

6. Make the Scene¶

The scene Dictionary specifies the information of the scene. For tracking, different input parameters are expected in the dictionary, such as number of rows, number of modules per row, row azimuth, hub_height (distance between the axis of rotation of the modules and the ground).

In [7]:
hub_height = 2.3
sceneDict = {'gcr': gcr,'hub_height':hub_height, 'nMods': 20, 'nRows': 7}  

To make the scene we have to create a Scene Object through the method makeScene1axis. This method will create a .rad file in the objects folder, with the parameters specified in sceneDict and the module created above.

In [8]:
trackerdict = demo.makeScene1axis(trackerdict = trackerdict, module = module, sceneDict = sceneDict) 
Making .rad files for cumulativesky 1-axis workflow
3 Radfiles created in /objects/

7. Combine Ground, Sky and Scene Objects¶

makeOct1axis joins the sky.rad file, ground.rad file, and the geometry.rad files created in makeScene.

In [9]:
trackerdict = demo.makeOct1axis(trackerdict = trackerdict)
Making 3 octfiles in root directory.
Created 1axis_-5.0.oct
Created 1axis_0.0.oct
Created 1axis_5.0.oct

8. Analyze and get results¶

We can choose to analyze any module in the Scene we have created. The default, if no modWanted or rowWanted is passed, is to sample the center module of the center row.

For this example we will sample row 2, module 9.

In [10]:
modWanted = 9
rowWanted = 2
trackerdict = demo.analysis1axis(trackerdict, modWanted=9, rowWanted = 2)
Linescan in process: 1axis_-5.0_Row2_Module9_Front
Linescan in process: 1axis_-5.0_Row2_Module9_Back
Saved: results\irr_1axis_-5.0_Row2_Module9.csv
Index: -5.0. Wm2Front: 753009.8222222222. Wm2Back: 104733.29185185184
Linescan in process: 1axis_0.0_Row2_Module9_Front
Linescan in process: 1axis_0.0_Row2_Module9_Back
Saved: results\irr_1axis_0.0_Row2_Module9.csv
Index: 0.0. Wm2Front: 1135.0014444444448. Wm2Back: 171.02631481481478
Linescan in process: 1axis_5.0_Row2_Module9_Front
Linescan in process: 1axis_5.0_Row2_Module9_Back
Saved: results\irr_1axis_5.0_Row2_Module9.csv
Index: 5.0. Wm2Front: 843605.862962963. Wm2Back: 115990.78148148149

Let's look at the results with more detail. The analysis1axis routine created individual result .csv files for each angle. To get a single cumulative result .csv where the irradiance is added by sensor, we need to run calculateResults(). This function will save a file named "results/Cumulative_Results.csv" and add a dataframe called "CompiledResults" to the radiance object.

In [11]:
trackerdict = demo.calculateResults()
Bifaciality factor of module stored is  1

We can view the cumlative results in two ways. The first is acess them directly from the RadianceObject.

In [12]:
demo.CompiledResults
Out[12]:
row module BGG Gfront_mean Grear_mean POA_eff Wm2Back
0 2 9 12.46076 1.597535e+06 199064.935793 [1827920.5291916667, 1822498.1192583335, 18181... [230386.02506666665, 224963.61513333334, 22059...
In [13]:
resultPath = os.path.join('results','Cumulative_Results.csv')
cumulativeResults = load.read1Result(resultPath)
cumulativeResults
Out[13]:
row module BGG Gfront_mean Grear_mean POA_eff Wm2Back
0 2 9 12.46076 1.597535e+06 199064.935793 [1827920.5291916667, 1822498.1192583335, 18181... [230386.02506666665, 224963.61513333334, 22059...

Lets take a closer look at a single result file.

In [17]:
resultPath = os.path.join('results','irr_1axis_-5.0_Row2_Module9.csv')
results = load.read1Result(resultPath)
results
Out[17]:
x y z rearZ mattype rearMat Wm2Front Wm2Back Back/FrontRatio
0 22.61734 -1.004 2.298522 2.276605 a8.1.a0.test-module.6457 a8.1.a0.test-module.2310 752540.066667 121214.366667 0.161074
1 22.26867 -1.004 2.329026 2.307110 a8.1.a0.test-module.6457 a8.1.a0.test-module.2310 752456.566667 115861.666667 0.153978
2 21.92000 -1.004 2.359531 2.337614 a8.1.a0.test-module.6457 a8.1.a0.test-module.2310 752351.366667 110508.733333 0.146884
3 21.57134 -1.004 2.390035 2.368119 a8.1.a0.test-module.6457 a8.1.a0.test-module.2310 752246.166667 102652.933333 0.136462
4 21.22267 -1.004 2.420540 2.398623 a8.1.tube1.16 sky 753053.400000 96092.410000 0.127604
5 20.87400 -1.004 2.451044 2.429128 a8.1.a1.test-module.6457 a8.1.a1.test-module.2310 753757.300000 98375.906667 0.130514
6 20.52533 -1.004 2.481549 2.459632 a8.1.a1.test-module.6457 a8.1.a1.test-module.2310 753670.433333 98988.386667 0.131342
7 20.17666 -1.004 2.512053 2.490137 a8.1.a1.test-module.6457 a8.1.a1.test-module.2310 753561.200000 98590.556667 0.130833
8 19.82799 -1.004 2.542558 2.520641 a8.1.a1.test-module.6457 a8.1.a1.test-module.2310 753451.900000 100314.666667 0.133140

There are various things to notice:

I. The materials column has a specific format that will tell you if you are sampling the correct module:

                            a{ModWanted}.{rowWanted}.a{numPanel}.{moduletype}.material_key

  • Since for this journal numPanels = 2, numPanel can either be 0 or 1, for the East-most and West-most module in the collector width.
  • numPanel, ModWanted and RowWanted are indexed starting at 0 in the results.
  • material_key is from the surface generated inside radiance. Usually it is 6457 for top surface of the module and .2310 for the bottom one.

II. Sensors sample always in the same direction. For this N-S aligned tracker, that is East-most to West. For this 2-up portrait tracker which is 3.5 meters, 20x7 rows and we are sampling module 9 on row 2, the East to West sampling goes from 22.6 m to 19.81 m = 2.79m. It is not exatly 3.5 because the sensors are spaced evenly through the collector width (CW):

Sensors spaced along collector width

III. When there is a ygap in the collector width (2-UP or more configuration), some of the sensors might end up sampling the torque tube, or the sky. You can see that in the materials columns. This also happens if the number of sensors is quite high, the edges of the module might be sampled instead of the sensors. For this reason, before calculating bifacial gain these results must be cleaned. For more advanced simulations, make sure you clean each result csv file individually. We provide some options on load.py but some are very use-specific, so you might have to develop your own cleaning tool (or let us know on issues!)

Important: If you have torquetubes and y-gap values, make sure you clean your results.

9. Clean Results¶

We have two options for cleaning results. The simplest one is load.cleanResults, but there is also a deepClean for specific purposes.

cleanResults will find materials that should not have values and set them to NaN.

In [18]:
results_clean = load.cleanResult(results)
results_clean
Out[18]:
x y z rearZ mattype rearMat Wm2Front Wm2Back Back/FrontRatio
0 22.61734 -1.004 2.298522 2.276605 a8.1.a0.test-module.6457 a8.1.a0.test-module.2310 752540.066667 121214.366667 0.161074
1 22.26867 -1.004 2.329026 2.307110 a8.1.a0.test-module.6457 a8.1.a0.test-module.2310 752456.566667 115861.666667 0.153978
2 21.92000 -1.004 2.359531 2.337614 a8.1.a0.test-module.6457 a8.1.a0.test-module.2310 752351.366667 110508.733333 0.146884
3 21.57134 -1.004 2.390035 2.368119 a8.1.a0.test-module.6457 a8.1.a0.test-module.2310 752246.166667 102652.933333 0.136462
4 21.22267 -1.004 2.420540 2.398623 a8.1.tube1.16 sky NaN NaN 0.127604
5 20.87400 -1.004 2.451044 2.429128 a8.1.a1.test-module.6457 a8.1.a1.test-module.2310 753757.300000 98375.906667 0.130514
6 20.52533 -1.004 2.481549 2.459632 a8.1.a1.test-module.6457 a8.1.a1.test-module.2310 753670.433333 98988.386667 0.131342
7 20.17666 -1.004 2.512053 2.490137 a8.1.a1.test-module.6457 a8.1.a1.test-module.2310 753561.200000 98590.556667 0.130833
8 19.82799 -1.004 2.542558 2.520641 a8.1.a1.test-module.6457 a8.1.a1.test-module.2310 753451.900000 100314.666667 0.133140

These are the total irradiance values over all the hours of the year that the module at each sampling point will receive. Dividing the back irradiance average by the front irradiance average will give us the bifacial gain for the year:

Bifacial Gain in Irradiance Formula

Assuming that our module from Prism Solar has a bifaciality factor (rear to front performance) of 90%, our bifacial gain is of:

In [19]:
bifacialityfactor = 0.9
print('Annual bifacial ratio: %0.3f ' %( np.nanmean(results_clean.Wm2Back) * bifacialityfactor / np.nanmean(results_clean.Wm2Front)) )
Annual bifacial ratio: 0.126 

CONDENSED VERSION¶

Everything we've done so far in super short condensed version:

In [21]:
import pandas as pd
startdate = pd.to_datetime('2021-05-01 6:0:0') #
    #                pd.to_datetime('2021-06-01 6:0:0'),
    #                pd.to_datetime('2021-07-01 6:0:0'),
    #                pd.to_datetime('2021-08-01 6:0:0'),
    #                pd.to_datetime('2021-09-01 6:0:0'),
    #                pd.to_datetime('2021-05-01 6:0:0')]
enddate = pd.to_datetime('2021-05-31 6:0:0')# ,       # May
    #                pd.to_datetime('2021-06-30 20:0:0'),   # June
In [22]:
albedo = 0.25
lat = 37.5
lon = -77.6
nMods = 20
nRows = 7
hub_height = 2.3
gcr = 0.33
moduletype = 'test-module'  # this must already exist since we are not calling makeModule in this CONDENSED example.
#testfolder = r'C:\Users\sayala\Documents\RadianceScenes\Tutorials\Journal2'
limit_angle = 50
angeldelta = 5
backtrack = True
gcr = gcr
modWanted = 9
rowWanted = 2
cumulativesky = True

import bifacial_radiance
demo = RadianceObj('test') 
demo.setGround(albedo)
epwfile = demo.getEPW(lat, lon) 
metdata = demo.readWeatherFile(epwfile, starttime=startdate, endtime=enddate, coerce_year=2021)
demo.set1axis(limit_angle=limit_angle, backtrack=backtrack, gcr=gcr, cumulativesky=cumulativesky)
demo.genCumSky1axis()
sceneDict = {'gcr': gcr,'hub_height':hub_height, 'nMods': nMods, 'nRows': nRows}  # orientation deprecated on v.0.2.4.
demo.makeScene1axis(module=moduletype, sceneDict=sceneDict)
demo.makeOct1axis()
demo.analysis1axis(modWanted=modWanted, rowWanted=rowWanted);
path = C:\Users\sayala\Documents\GitHub\bifacial_radiance\docs\tutorials
Loading albedo, 1 value(s), 0.250 avg
1 nonzero albedo values.
Getting weather file: USA_VA_Richmond.724010_TMY2.epw
 ... OK!
8760 line in WeatherFile. Assuming this is a standard hourly WeatherFile for the year for purposes of saving Gencumulativesky temporary weather files in EPW folder.
Coercing year to 2021
Filtering dates
Saving file EPWs\metdata_temp.csv, # points: 8760
Calculating Sun position for Metdata that is right-labeled  with a delta of -30 mins. i.e. 12 is 11:30 sunpos
Saving file EPWs\1axis_-50.0.csv, # points: 68
Saving file EPWs\1axis_-45.0.csv, # points: 8
Saving file EPWs\1axis_-40.0.csv, # points: 19
Saving file EPWs\1axis_-35.0.csv, # points: 25
Saving file EPWs\1axis_-25.0.csv, # points: 30
Saving file EPWs\1axis_-15.0.csv, # points: 9
Saving file EPWs\1axis_-10.0.csv, # points: 52
Saving file EPWs\1axis_5.0.csv, # points: 30
Saving file EPWs\1axis_10.0.csv, # points: 6
Saving file EPWs\1axis_15.0.csv, # points: 14
Saving file EPWs\1axis_20.0.csv, # points: 39
Saving file EPWs\1axis_35.0.csv, # points: 30
Saving file EPWs\1axis_45.0.csv, # points: 20
Saving file EPWs\1axis_50.0.csv, # points: 70
message: There were 66 sun up hours in this climate file
Total Ibh/Lbh: 0.000000
Created skyfile skies\1axis_-50.0.rad
message: There were 8 sun up hours in this climate file
Total Ibh/Lbh: 0.000000
Created skyfile skies\1axis_-45.0.rad
message: There were 19 sun up hours in this climate file
Total Ibh/Lbh: 0.000000
Created skyfile skies\1axis_-40.0.rad
message: There were 25 sun up hours in this climate file
Total Ibh/Lbh: 0.000000
Created skyfile skies\1axis_-35.0.rad
message: There were 30 sun up hours in this climate file
Total Ibh/Lbh: 0.000000
Created skyfile skies\1axis_-25.0.rad
message: There were 8 sun up hours in this climate file
Total Ibh/Lbh: 0.000000
Created skyfile skies\1axis_-15.0.rad
message: There were 48 sun up hours in this climate file
Total Ibh/Lbh: 0.000000
Created skyfile skies\1axis_-10.0.rad
message: There were 30 sun up hours in this climate file
Total Ibh/Lbh: 0.000000
Created skyfile skies\1axis_5.0.rad
message: There were 5 sun up hours in this climate file
Total Ibh/Lbh: 0.000000
Created skyfile skies\1axis_10.0.rad
message: There were 13 sun up hours in this climate file
Total Ibh/Lbh: 0.000000
Created skyfile skies\1axis_15.0.rad
message: There were 39 sun up hours in this climate file
Total Ibh/Lbh: 0.000000
Created skyfile skies\1axis_20.0.rad
message: There were 30 sun up hours in this climate file
Total Ibh/Lbh: 0.000000
Created skyfile skies\1axis_35.0.rad
message: There were 20 sun up hours in this climate file
Total Ibh/Lbh: 0.000000
Created skyfile skies\1axis_45.0.rad
message: There were 70 sun up hours in this climate file
Total Ibh/Lbh: 0.000000
Created skyfile skies\1axis_50.0.rad

Making .rad files for cumulativesky 1-axis workflow
14 Radfiles created in /objects/

Making 14 octfiles in root directory.
Created 1axis_-50.0.oct
Created 1axis_-45.0.oct
Created 1axis_-40.0.oct
Created 1axis_-35.0.oct
Created 1axis_-25.0.oct
Created 1axis_-15.0.oct
Created 1axis_-10.0.oct
Created 1axis_5.0.oct
Created 1axis_10.0.oct
Created 1axis_15.0.oct
Created 1axis_20.0.oct
Created 1axis_35.0.oct
Created 1axis_45.0.oct
Created 1axis_50.0.oct
Linescan in process: 1axis_-50.0_Row2_Module9_Front
Linescan in process: 1axis_-50.0_Row2_Module9_Back
Saved: results\irr_1axis_-50.0_Row2_Module9.csv
Index: -50.0. Wm2Front: 27517.084714814817. Wm2Back: 2826.930932222222
Linescan in process: 1axis_-45.0_Row2_Module9_Front
Linescan in process: 1axis_-45.0_Row2_Module9_Back
Saved: results\irr_1axis_-45.0_Row2_Module9.csv
Index: -45.0. Wm2Front: 1731.6319987407405. Wm2Back: 133.31039248148147
Linescan in process: 1axis_-40.0_Row2_Module9_Front
Linescan in process: 1axis_-40.0_Row2_Module9_Back
Saved: results\irr_1axis_-40.0_Row2_Module9.csv
Index: -40.0. Wm2Front: 8889.726928703703. Wm2Back: 879.6606937037037
Linescan in process: 1axis_-35.0_Row2_Module9_Front
Linescan in process: 1axis_-35.0_Row2_Module9_Back
Saved: results\irr_1axis_-35.0_Row2_Module9.csv
Index: -35.0. Wm2Front: 10845.10608074074. Wm2Back: 1156.813395925926
Linescan in process: 1axis_-25.0_Row2_Module9_Front
Linescan in process: 1axis_-25.0_Row2_Module9_Back
Saved: results\irr_1axis_-25.0_Row2_Module9.csv
Index: -25.0. Wm2Front: 18399.76553688889. Wm2Back: 2199.2048133333333
Linescan in process: 1axis_-15.0_Row2_Module9_Front
Linescan in process: 1axis_-15.0_Row2_Module9_Back
Saved: results\irr_1axis_-15.0_Row2_Module9.csv
Index: -15.0. Wm2Front: 242.22281503703704. Wm2Back: 32.28069451481482
Linescan in process: 1axis_-10.0_Row2_Module9_Front
Linescan in process: 1axis_-10.0_Row2_Module9_Back
Saved: results\irr_1axis_-10.0_Row2_Module9.csv
Index: -10.0. Wm2Front: 18715.446807037035. Wm2Back: 2381.9418274074073
Linescan in process: 1axis_5.0_Row2_Module9_Front
Linescan in process: 1axis_5.0_Row2_Module9_Back
Saved: results\irr_1axis_5.0_Row2_Module9.csv
Index: 5.0. Wm2Front: 19061.03714637037. Wm2Back: 2263.7957174074077
Linescan in process: 1axis_10.0_Row2_Module9_Front
Linescan in process: 1axis_10.0_Row2_Module9_Back
Saved: results\irr_1axis_10.0_Row2_Module9.csv
Index: 10.0. Wm2Front: 479.18399271481474. Wm2Back: 28.480026422222224
Linescan in process: 1axis_15.0_Row2_Module9_Front
Linescan in process: 1axis_15.0_Row2_Module9_Back
Saved: results\irr_1axis_15.0_Row2_Module9.csv
Index: 15.0. Wm2Front: 826.463565. Wm2Back: 66.72499407407406
Linescan in process: 1axis_20.0_Row2_Module9_Front
Linescan in process: 1axis_20.0_Row2_Module9_Back
Saved: results\irr_1axis_20.0_Row2_Module9.csv
Index: 20.0. Wm2Front: 20060.8926242963. Wm2Back: 2241.101145925926
Linescan in process: 1axis_35.0_Row2_Module9_Front
Linescan in process: 1axis_35.0_Row2_Module9_Back
Saved: results\irr_1axis_35.0_Row2_Module9.csv
Index: 35.0. Wm2Front: 18507.62126888889. Wm2Back: 1924.670081111111
Linescan in process: 1axis_45.0_Row2_Module9_Front
Linescan in process: 1axis_45.0_Row2_Module9_Back
Saved: results\irr_1axis_45.0_Row2_Module9.csv
Index: 45.0. Wm2Front: 9566.065326925927. Wm2Back: 825.9953966666667
Linescan in process: 1axis_50.0_Row2_Module9_Front
Linescan in process: 1axis_50.0_Row2_Module9_Back
Saved: results\irr_1axis_50.0_Row2_Module9.csv
Index: 50.0. Wm2Front: 31832.450419259258. Wm2Back: 2820.5362711111106
In [23]:
res = demo.calculateResults(bifacialityfactor=1.0)
In [24]:
res
Out[24]:
{-10.0: {'csvfile': 'EPWs\\1axis_-10.0.csv',
  'surf_azm': 90.0,
  'surf_tilt': 10.0,
  'datetime': Index(['2021-05-01 06:00:00', '2021-05-01 12:00:00', '2021-05-02 06:00:00',
         '2021-05-02 12:00:00', '2021-05-03 06:00:00', '2021-05-03 12:00:00',
         '2021-05-04 06:00:00', '2021-05-04 12:00:00', '2021-05-05 06:00:00',
         '2021-05-05 12:00:00', '2021-05-06 06:00:00', '2021-05-06 12:00:00',
         '2021-05-07 06:00:00', '2021-05-07 12:00:00', '2021-05-08 06:00:00',
         '2021-05-08 12:00:00', '2021-05-09 06:00:00', '2021-05-09 12:00:00',
         '2021-05-10 06:00:00', '2021-05-10 12:00:00', '2021-05-11 06:00:00',
         '2021-05-11 12:00:00', '2021-05-12 06:00:00', '2021-05-12 12:00:00',
         '2021-05-13 06:00:00', '2021-05-13 12:00:00', '2021-05-14 06:00:00',
         '2021-05-14 12:00:00', '2021-05-15 06:00:00', '2021-05-15 12:00:00',
         '2021-05-16 06:00:00', '2021-05-16 12:00:00', '2021-05-17 06:00:00',
         '2021-05-17 12:00:00', '2021-05-18 06:00:00', '2021-05-18 12:00:00',
         '2021-05-19 06:00:00', '2021-05-19 12:00:00', '2021-05-20 06:00:00',
         '2021-05-20 12:00:00', '2021-05-21 06:00:00', '2021-05-21 12:00:00',
         '2021-05-22 06:00:00', '2021-05-22 12:00:00', '2021-05-23 12:00:00',
         '2021-05-24 12:00:00', '2021-05-25 12:00:00', '2021-05-26 12:00:00',
         '2021-05-27 12:00:00', '2021-05-28 12:00:00', '2021-05-29 12:00:00',
         '2021-05-30 12:00:00'],
        dtype='object'),
  'count': 52,
  'skyfile': 'skies\\1axis_-10.0.rad',
  'radfile': 'objects\\1axis-10.0__C_2.01088_rtr_10.09100_tilt_10.00000_20modsx7rows_origin0,0.rad',
  'scene': {'module': {'x': 1.0, 'y': 1.59, 'z': 0.02, 'modulematerial': 'black', 'scenex': 1.05, 'sceney': 3.33, 'scenez': 0.0, 'numpanels': 2, 'bifi': 0.9, 'text': '! genbox black test-module 1.0 1.59 0.02 | xform -t -0.5 -1.665 0 -a 2 -t 0 1.74 0\n!xform -rz 0 C:\\Users\\sayala\\Documents\\GitHub\\bifacial_radiance\\tests\\customTT.rad | xform -rz 90 -t 0.5 0 -0.15', 'modulefile': 'objects\\test-module.rad', 'glass': False, 'offsetfromaxis': 0, 'xgap': 0.05, 'ygap': 0.15, 'zgap': 0.0}, 'modulefile': 'objects\\test-module.rad', 'hpc': False, 'name': 'Scene0', 'gcr': 0.32999702705381034, 'text': '!xform -rx 10.0 -t 0 0 2.3 -a 20 -t 1.05 0 0 -a 7 -t 0 10.091 0 -i 1 -t -9.450000000000001 -30.272999999999996 0 -rz 90.0 -t 0 0 0 objects\\test-module.rad', 'radfiles': 'objects\\1axis-10.0__C_2.01088_rtr_10.09100_tilt_10.00000_20modsx7rows_origin0,0.rad', 'sceneDict': {'tilt': 10.0, 'gcr': 0.33, 'clearance_height': 2.010875784184561, 'azimuth': 90.0, 'nMods': 20, 'nRows': 7, 'modulez': 0.02, 'axis_tilt': 0, 'originx': 0, 'originy': 0}},
  'octfile': '1axis_-10.0.oct',
  'Results': [{'rowWanted': 2,
    'modWanted': 9,
    'AnalysisObj': {'octfile': '1axis_-10.0.oct', 'name': '1axis_-10.0', 'hpc': False, 'modWanted': 9, 'rowWanted': 2, 'x': [21.49723, 21.16929, 20.84135, 20.51341, 20.18546, 19.85752, 19.52958, 19.20164, 18.8737], 'y': [-1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05], 'z': [2.089382, 2.147206, 2.205031, 2.262856, 2.320681, 2.378506, 2.436331, 2.494155, 2.55198], 'rearZ': [2.067716, 2.125541, 2.183366, 2.24119, 2.299015, 2.35684, 2.414665, 2.47249, 2.530315], 'mattype': ['a8.1.a0.test-module.6457', 'a8.1.a0.test-module.6457', 'a8.1.a0.test-module.6457', 'a8.1.a0.test-module.6457', 'a8.1.triangle_3', 'a8.1.a1.test-module.6457', 'a8.1.a1.test-module.6457', 'a8.1.a1.test-module.6457', 'a8.1.a1.test-module.6457'], 'rearMat': ['a8.1.a0.test-module.2310', 'a8.1.a0.test-module.2310', 'a8.1.a0.test-module.2310', 'a8.1.a0.test-module.2310', 'a8.1.triangle_2', 'a8.1.a1.test-module.2310', 'a8.1.a1.test-module.2310', 'a8.1.a1.test-module.2310', 'a8.1.a1.test-module.2310'], 'Wm2Front': [20851.396666666667, 20851.93, 20852.256666666664, 20852.58, 15.914596666666668, 20853.226666666666, 20853.55, 21654.933333333334, 21653.233333333334], 'Wm2Back': [2947.0113333333334, 2729.266666666667, 2566.1883333333335, 1855.9883333333335, 15.665446666666668, 2159.4060000000004, 2826.259666666667, 3064.673666666667, 3273.017], 'Back/FrontRatio': [0.14133399498895302, 0.13088795789064653, 0.12306525146365847, 0.08900520915532391, 0.9842827130368346, 0.10355260272018964, 0.1355289402110301, 0.14152311059882688, 0.1511560328408521], 'backRatio': [0.14133399498895302, 0.13088795789064653, 0.12306525146365847, 0.08900520915532391, 0.9842827130368346, 0.10355260272018964, 0.1355289402110301, 0.14152311059882688, 0.1511560328408521], 'rearX': [21.49341, 21.16547, 20.83753, 20.50959, 20.18164, 19.8537, 19.52576, 19.19782, 18.86988], 'rearY': [-1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05]},
    'Wm2Front': [20851.396666666667,
     20851.93,
     20852.256666666664,
     20852.58,
     15.914596666666668,
     20853.226666666666,
     20853.55,
     21654.933333333334,
     21653.233333333334],
    'Wm2Back': [2947.0113333333334,
     2729.266666666667,
     2566.1883333333335,
     1855.9883333333335,
     15.665446666666668,
     2159.4060000000004,
     2826.259666666667,
     3064.673666666667,
     3273.017],
    'backRatio': [0.14133399498895302,
     0.13088795789064653,
     0.12306525146365847,
     0.08900520915532391,
     0.9842827130368346,
     0.10355260272018964,
     0.1355289402110301,
     0.14152311059882688,
     0.1511560328408521]}]},
 -35.0: {'csvfile': 'EPWs\\1axis_-35.0.csv',
  'surf_azm': 90.0,
  'surf_tilt': 35.0,
  'datetime': Index(['2021-05-01 07:00:00', '2021-05-02 07:00:00', '2021-05-03 07:00:00',
         '2021-05-04 07:00:00', '2021-05-05 07:00:00', '2021-05-06 07:00:00',
         '2021-05-07 07:00:00', '2021-05-13 10:00:00', '2021-05-14 10:00:00',
         '2021-05-15 10:00:00', '2021-05-16 10:00:00', '2021-05-17 10:00:00',
         '2021-05-18 10:00:00', '2021-05-19 10:00:00', '2021-05-20 10:00:00',
         '2021-05-21 10:00:00', '2021-05-22 10:00:00', '2021-05-23 10:00:00',
         '2021-05-24 10:00:00', '2021-05-25 10:00:00', '2021-05-26 10:00:00',
         '2021-05-27 10:00:00', '2021-05-28 10:00:00', '2021-05-29 10:00:00',
         '2021-05-30 10:00:00'],
        dtype='object'),
  'count': 25,
  'skyfile': 'skies\\1axis_-35.0.rad',
  'radfile': 'objects\\1axis-35.0__C_1.34500_rtr_10.09100_tilt_35.00000_20modsx7rows_origin0,0.rad',
  'scene': {'module': {'x': 1.0, 'y': 1.59, 'z': 0.02, 'modulematerial': 'black', 'scenex': 1.05, 'sceney': 3.33, 'scenez': 0.0, 'numpanels': 2, 'bifi': 0.9, 'text': '! genbox black test-module 1.0 1.59 0.02 | xform -t -0.5 -1.665 0 -a 2 -t 0 1.74 0\n!xform -rz 0 C:\\Users\\sayala\\Documents\\GitHub\\bifacial_radiance\\tests\\customTT.rad | xform -rz 90 -t 0.5 0 -0.15', 'modulefile': 'objects\\test-module.rad', 'glass': False, 'offsetfromaxis': 0, 'xgap': 0.05, 'ygap': 0.15, 'zgap': 0.0}, 'modulefile': 'objects\\test-module.rad', 'hpc': False, 'name': 'Scene0', 'gcr': 0.32999702705381034, 'text': '!xform -rx 35.0 -t 0 0 2.3 -a 20 -t 1.05 0 0 -a 7 -t 0 10.091 0 -i 1 -t -9.450000000000001 -30.272999999999996 0 -rz 90.0 -t 0 0 0 objects\\test-module.rad', 'radfiles': 'objects\\1axis-35.0__C_1.34500_rtr_10.09100_tilt_35.00000_20modsx7rows_origin0,0.rad', 'sceneDict': {'tilt': 35.0, 'gcr': 0.33, 'clearance_height': 1.3449952334755082, 'azimuth': 90.0, 'nMods': 20, 'nRows': 7, 'modulez': 0.02, 'axis_tilt': 0, 'originx': 0, 'originy': 0}},
  'octfile': '1axis_-35.0.oct',
  'Results': [{'rowWanted': 2,
    'modWanted': 9,
    'AnalysisObj': {'octfile': '1axis_-35.0.oct', 'name': '1axis_-35.0', 'hpc': False, 'modWanted': 9, 'rowWanted': 2, 'x': [21.28497, 21.0122, 20.73942, 20.46664, 20.19386, 19.92109, 19.64831, 19.37553, 19.10275], 'y': [-1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05], 'z': [1.553198, 1.744199, 1.9352, 2.126201, 2.317202, 2.508203, 2.699204, 2.890205, 3.081206], 'rearZ': [1.535177, 1.726178, 1.917179, 2.10818, 2.299181, 2.490182, 2.681183, 2.872184, 3.063185], 'mattype': ['a8.1.a0.test-module.6457', 'a8.1.a0.test-module.6457', 'a8.1.a0.test-module.6457', 'a8.1.a0.test-module.6457', 'a8.1.triangle_3', 'a8.1.a1.test-module.6457', 'a8.1.a1.test-module.6457', 'a8.1.a1.test-module.6457', 'a8.1.a1.test-module.6457'], 'rearMat': ['a8.1.a0.test-module.2310', 'a8.1.a0.test-module.2310', 'a8.1.a0.test-module.2310', 'a8.1.a0.test-module.2310', 'a8.1.triangle_2', 'a8.1.a1.test-module.2310', 'a8.1.a1.test-module.2310', 'a8.1.a1.test-module.2310', 'a8.1.a1.test-module.2310'], 'Wm2Front': [11747.996666666666, 11928.036666666667, 12198.963333333333, 12259.003333333332, 12.831393333333333, 12160.699999999999, 12190.596666666666, 12544.94, 12562.886666666665], 'Wm2Back': [1493.4070000000002, 1369.0273333333334, 1258.7173333333333, 970.8318666666668, 18.37303, 1189.49, 1318.3293333333334, 1370.825, 1422.3196666666665], 'Back/FrontRatio': [0.1271201307978923, 0.1147738942138932, 0.10318231113225923, 0.0791933700542782, 1.431769547795449, 0.09781426251660987, 0.1081431254956518, 0.10927313249221339, 0.1132159822172519], 'backRatio': [0.1271201307978923, 0.1147738942138932, 0.10318231113225923, 0.0791933700542782, 1.431769547795449, 0.09781426251660987, 0.1081431254956518, 0.10927313249221339, 0.1132159822172519], 'rearX': [21.27236, 20.99958, 20.7268, 20.45402, 20.18124, 19.90847, 19.63569, 19.36291, 19.09013], 'rearY': [-1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05]},
    'Wm2Front': [11747.996666666666,
     11928.036666666667,
     12198.963333333333,
     12259.003333333332,
     12.831393333333333,
     12160.699999999999,
     12190.596666666666,
     12544.94,
     12562.886666666665],
    'Wm2Back': [1493.4070000000002,
     1369.0273333333334,
     1258.7173333333333,
     970.8318666666668,
     18.37303,
     1189.49,
     1318.3293333333334,
     1370.825,
     1422.3196666666665],
    'backRatio': [0.1271201307978923,
     0.1147738942138932,
     0.10318231113225923,
     0.0791933700542782,
     1.431769547795449,
     0.09781426251660987,
     0.1081431254956518,
     0.10927313249221339,
     0.1132159822172519]}]},
 -50.0: {'csvfile': 'EPWs\\1axis_-50.0.csv',
  'surf_azm': 90.0,
  'surf_tilt': 50.0,
  'datetime': Index(['2021-05-01 08:00:00', '2021-05-01 09:00:00', '2021-05-02 08:00:00',
         '2021-05-02 09:00:00', '2021-05-03 08:00:00', '2021-05-03 09:00:00',
         '2021-05-04 08:00:00', '2021-05-04 09:00:00', '2021-05-05 08:00:00',
         '2021-05-05 09:00:00', '2021-05-06 08:00:00', '2021-05-06 09:00:00',
         '2021-05-07 08:00:00', '2021-05-07 09:00:00', '2021-05-08 08:00:00',
         '2021-05-08 09:00:00', '2021-05-09 08:00:00', '2021-05-09 09:00:00',
         '2021-05-10 08:00:00', '2021-05-10 09:00:00', '2021-05-11 08:00:00',
         '2021-05-11 09:00:00', '2021-05-12 08:00:00', '2021-05-12 09:00:00',
         '2021-05-13 08:00:00', '2021-05-13 09:00:00', '2021-05-14 08:00:00',
         '2021-05-14 09:00:00', '2021-05-15 08:00:00', '2021-05-15 09:00:00',
         '2021-05-16 08:00:00', '2021-05-16 09:00:00', '2021-05-17 08:00:00',
         '2021-05-17 09:00:00', '2021-05-18 08:00:00', '2021-05-18 09:00:00',
         '2021-05-19 08:00:00', '2021-05-19 09:00:00', '2021-05-20 08:00:00',
         '2021-05-20 09:00:00', '2021-05-21 08:00:00', '2021-05-21 09:00:00',
         '2021-05-22 08:00:00', '2021-05-22 09:00:00', '2021-05-23 07:00:00',
         '2021-05-23 08:00:00', '2021-05-23 09:00:00', '2021-05-24 07:00:00',
         '2021-05-24 08:00:00', '2021-05-24 09:00:00', '2021-05-25 07:00:00',
         '2021-05-25 08:00:00', '2021-05-25 09:00:00', '2021-05-26 07:00:00',
         '2021-05-26 08:00:00', '2021-05-26 09:00:00', '2021-05-27 07:00:00',
         '2021-05-27 08:00:00', '2021-05-27 09:00:00', '2021-05-28 07:00:00',
         '2021-05-28 08:00:00', '2021-05-28 09:00:00', '2021-05-29 07:00:00',
         '2021-05-29 08:00:00', '2021-05-29 09:00:00', '2021-05-30 07:00:00',
         '2021-05-30 08:00:00', '2021-05-30 09:00:00'],
        dtype='object'),
  'count': 68,
  'skyfile': 'skies\\1axis_-50.0.rad',
  'radfile': 'objects\\1axis-50.0__C_1.02454_rtr_10.09100_tilt_50.00000_20modsx7rows_origin0,0.rad',
  'scene': {'module': {'x': 1.0, 'y': 1.59, 'z': 0.02, 'modulematerial': 'black', 'scenex': 1.05, 'sceney': 3.33, 'scenez': 0.0, 'numpanels': 2, 'bifi': 0.9, 'text': '! genbox black test-module 1.0 1.59 0.02 | xform -t -0.5 -1.665 0 -a 2 -t 0 1.74 0\n!xform -rz 0 C:\\Users\\sayala\\Documents\\GitHub\\bifacial_radiance\\tests\\customTT.rad | xform -rz 90 -t 0.5 0 -0.15', 'modulefile': 'objects\\test-module.rad', 'glass': False, 'offsetfromaxis': 0, 'xgap': 0.05, 'ygap': 0.15, 'zgap': 0.0}, 'modulefile': 'objects\\test-module.rad', 'hpc': False, 'name': 'Scene0', 'gcr': 0.32999702705381034, 'text': '!xform -rx 50.0 -t 0 0 2.3 -a 20 -t 1.05 0 0 -a 7 -t 0 10.091 0 -i 1 -t -9.450000000000001 -30.272999999999996 0 -rz 90.0 -t 0 0 0 objects\\test-module.rad', 'radfiles': 'objects\\1axis-50.0__C_1.02454_rtr_10.09100_tilt_50.00000_20modsx7rows_origin0,0.rad', 'sceneDict': {'tilt': 50.0, 'gcr': 0.33, 'clearance_height': 1.0245360022069014, 'azimuth': 90.0, 'nMods': 20, 'nRows': 7, 'modulez': 0.02, 'axis_tilt': 0, 'originx': 0, 'originy': 0}},
  'octfile': '1axis_-50.0.oct',
  'Results': [{'rowWanted': 2,
    'modWanted': 9,
    'AnalysisObj': {'octfile': '1axis_-50.0.oct', 'name': '1axis_-50.0', 'hpc': False, 'modWanted': 9, 'rowWanted': 2, 'x': [21.0541, 20.84005, 20.626, 20.41195, 20.19791, 19.98386, 19.76981, 19.55576, 19.34171], 'y': [-1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05], 'z': [1.293127, 1.54822, 1.803313, 2.058406, 2.313499, 2.568591, 2.823684, 3.078777, 3.33387], 'rearZ': [1.278986, 1.534079, 1.789172, 2.044264, 2.299357, 2.55445, 2.809543, 3.064636, 3.319728], 'mattype': ['a8.1.a0.test-module.6457', 'a8.1.a0.test-module.6457', 'a8.1.a0.test-module.6457', 'a8.1.a0.test-module.6457', 'a8.1.triangle_3', 'a8.1.a1.test-module.6457', 'a8.1.a1.test-module.6457', 'a8.1.a1.test-module.6457', 'a8.1.a1.test-module.6457'], 'rearMat': ['a8.1.a0.test-module.2310', 'a8.1.a0.test-module.2310', 'a8.1.a0.test-module.2310', 'a8.1.a0.test-module.2310', 'a8.1.triangle_2', 'a8.1.a1.test-module.2310', 'a8.1.a1.test-module.2310', 'a8.1.a1.test-module.2310', 'a8.1.a1.test-module.2310'], 'Wm2Front': [30687.713333333333, 31004.02, 30060.876666666667, 30326.58666666667, 30.5491, 31219.25333333333, 31384.05, 31398.666666666668, 31542.046666666665], 'Wm2Back': [3649.286, 3434.2053333333333, 3160.543, 2247.4966666666664, 60.40372333333334, 3000.6223333333332, 3194.967, 3305.717666666667, 3389.1366666666668], 'Back/FrontRatio': [0.1189168395000375, 0.1107664497238385, 0.10513808129775941, 0.07410977757767954, 1.9772021477289219, 0.09611447798512976, 0.10180224981153645, 0.10528209992094888, 0.10744821333360276], 'backRatio': [0.1189168395000375, 0.1107664497238385, 0.10513808129775941, 0.07410977757767954, 1.9772021477289219, 0.09611447798512976, 0.10180224981153645, 0.10528209992094888, 0.10744821333360276], 'rearX': [21.03725, 20.8232, 20.60915, 20.3951, 20.18105, 19.967, 19.75296, 19.53891, 19.32486], 'rearY': [-1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05]},
    'Wm2Front': [30687.713333333333,
     31004.02,
     30060.876666666667,
     30326.58666666667,
     30.5491,
     31219.25333333333,
     31384.05,
     31398.666666666668,
     31542.046666666665],
    'Wm2Back': [3649.286,
     3434.2053333333333,
     3160.543,
     2247.4966666666664,
     60.40372333333334,
     3000.6223333333332,
     3194.967,
     3305.717666666667,
     3389.1366666666668],
    'backRatio': [0.1189168395000375,
     0.1107664497238385,
     0.10513808129775941,
     0.07410977757767954,
     1.9772021477289219,
     0.09611447798512976,
     0.10180224981153645,
     0.10528209992094888,
     0.10744821333360276]}]},
 -40.0: {'csvfile': 'EPWs\\1axis_-40.0.csv',
  'surf_azm': 90.0,
  'surf_tilt': 40.0,
  'datetime': Index(['2021-05-01 10:00:00', '2021-05-02 10:00:00', '2021-05-03 10:00:00',
         '2021-05-04 10:00:00', '2021-05-05 10:00:00', '2021-05-06 10:00:00',
         '2021-05-07 10:00:00', '2021-05-08 07:00:00', '2021-05-08 10:00:00',
         '2021-05-09 07:00:00', '2021-05-09 10:00:00', '2021-05-10 07:00:00',
         '2021-05-10 10:00:00', '2021-05-11 07:00:00', '2021-05-11 10:00:00',
         '2021-05-12 07:00:00', '2021-05-12 10:00:00', '2021-05-13 07:00:00',
         '2021-05-14 07:00:00'],
        dtype='object'),
  'count': 19,
  'skyfile': 'skies\\1axis_-40.0.rad',
  'radfile': 'objects\\1axis-40.0__C_1.22976_rtr_10.09100_tilt_40.00000_20modsx7rows_origin0,0.rad',
  'scene': {'module': {'x': 1.0, 'y': 1.59, 'z': 0.02, 'modulematerial': 'black', 'scenex': 1.05, 'sceney': 3.33, 'scenez': 0.0, 'numpanels': 2, 'bifi': 0.9, 'text': '! genbox black test-module 1.0 1.59 0.02 | xform -t -0.5 -1.665 0 -a 2 -t 0 1.74 0\n!xform -rz 0 C:\\Users\\sayala\\Documents\\GitHub\\bifacial_radiance\\tests\\customTT.rad | xform -rz 90 -t 0.5 0 -0.15', 'modulefile': 'objects\\test-module.rad', 'glass': False, 'offsetfromaxis': 0, 'xgap': 0.05, 'ygap': 0.15, 'zgap': 0.0}, 'modulefile': 'objects\\test-module.rad', 'hpc': False, 'name': 'Scene0', 'gcr': 0.32999702705381034, 'text': '!xform -rx 40.0 -t 0 0 2.3 -a 20 -t 1.05 0 0 -a 7 -t 0 10.091 0 -i 1 -t -9.450000000000001 -30.272999999999996 0 -rz 90.0 -t 0 0 0 objects\\test-module.rad', 'radfiles': 'objects\\1axis-40.0__C_1.22976_rtr_10.09100_tilt_40.00000_20modsx7rows_origin0,0.rad', 'sceneDict': {'tilt': 40.0, 'gcr': 0.33, 'clearance_height': 1.2297586298719119, 'azimuth': 90.0, 'nMods': 20, 'nRows': 7, 'modulez': 0.02, 'axis_tilt': 0, 'originx': 0, 'originy': 0}},
  'octfile': '1axis_-40.0.oct',
  'Results': [{'rowWanted': 2,
    'modWanted': 9,
    'AnalysisObj': {'octfile': '1axis_-40.0.oct', 'name': '1axis_-40.0', 'hpc': False, 'modWanted': 9, 'rowWanted': 2, 'x': [21.21569, 20.9606, 20.7055, 20.45041, 20.19532, 19.94022, 19.68513, 19.43004, 19.17495], 'y': [-1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05], 'z': [1.459894, 1.673942, 1.88799, 2.102039, 2.316087, 2.530135, 2.744183, 2.958232, 3.17228], 'rearZ': [1.443041, 1.657089, 1.871137, 2.085186, 2.299234, 2.513282, 2.727331, 2.941379, 3.155427], 'mattype': ['a8.1.a0.test-module.6457', 'a8.1.a0.test-module.6457', 'a8.1.a0.test-module.6457', 'a8.1.a0.test-module.6457', 'a8.1.triangle_3', 'a8.1.a1.test-module.6457', 'a8.1.a1.test-module.6457', 'a8.1.a1.test-module.6457', 'a8.1.a1.test-module.6457'], 'rearMat': ['a8.1.a0.test-module.2310', 'a8.1.a0.test-module.2310', 'a8.1.a0.test-module.2310', 'a8.1.a0.test-module.2310', 'a8.1.triangle_2', 'a8.1.a1.test-module.2310', 'a8.1.a1.test-module.2310', 'a8.1.a1.test-module.2310', 'a8.1.a1.test-module.2310'], 'Wm2Front': [9335.118333333332, 9524.916666666666, 9580.956333333334, 9739.918333333335, 6.232691666666668, 10868.933333333334, 10898.046666666667, 10017.526666666667, 10035.893333333333], 'Wm2Back': [1152.2076666666667, 1039.17, 947.9985, 746.8396666666667, 15.654076666666668, 874.7520666666666, 1000.3402666666667, 1046.372, 1093.612], 'Back/FrontRatio': [0.12342720275170203, 0.1091001556513892, 0.09894611436184944, 0.07667821889558428, 2.5112048371550832, 0.08048186140787858, 0.0917907773266912, 0.10445411630674142, 0.10897005923703927], 'backRatio': [0.12342720275170203, 0.1091001556513892, 0.09894611436184944, 0.07667821889558428, 2.5112048371550832, 0.08048186140787858, 0.0917907773266912, 0.10445411630674142, 0.10897005923703927], 'rearX': [21.20155, 20.94645, 20.69136, 20.43627, 20.18118, 19.92608, 19.67099, 19.4159, 19.1608], 'rearY': [-1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05]},
    'Wm2Front': [9335.118333333332,
     9524.916666666666,
     9580.956333333334,
     9739.918333333335,
     6.232691666666668,
     10868.933333333334,
     10898.046666666667,
     10017.526666666667,
     10035.893333333333],
    'Wm2Back': [1152.2076666666667,
     1039.17,
     947.9985,
     746.8396666666667,
     15.654076666666668,
     874.7520666666666,
     1000.3402666666667,
     1046.372,
     1093.612],
    'backRatio': [0.12342720275170203,
     0.1091001556513892,
     0.09894611436184944,
     0.07667821889558428,
     2.5112048371550832,
     0.08048186140787858,
     0.0917907773266912,
     0.10445411630674142,
     0.10897005923703927]}]},
 -25.0: {'csvfile': 'EPWs\\1axis_-25.0.csv',
  'surf_azm': 90.0,
  'surf_tilt': 25.0,
  'datetime': Index(['2021-05-01 11:00:00', '2021-05-02 11:00:00', '2021-05-03 11:00:00',
         '2021-05-04 11:00:00', '2021-05-05 11:00:00', '2021-05-06 11:00:00',
         '2021-05-07 11:00:00', '2021-05-08 11:00:00', '2021-05-09 11:00:00',
         '2021-05-10 11:00:00', '2021-05-11 11:00:00', '2021-05-12 11:00:00',
         '2021-05-13 11:00:00', '2021-05-14 11:00:00', '2021-05-15 11:00:00',
         '2021-05-16 11:00:00', '2021-05-17 11:00:00', '2021-05-18 11:00:00',
         '2021-05-19 11:00:00', '2021-05-20 11:00:00', '2021-05-21 11:00:00',
         '2021-05-22 11:00:00', '2021-05-23 11:00:00', '2021-05-24 11:00:00',
         '2021-05-25 11:00:00', '2021-05-26 11:00:00', '2021-05-27 11:00:00',
         '2021-05-28 11:00:00', '2021-05-29 11:00:00', '2021-05-30 11:00:00'],
        dtype='object'),
  'count': 30,
  'skyfile': 'skies\\1axis_-25.0.rad',
  'radfile': 'objects\\1axis-25.0__C_1.59634_rtr_10.09100_tilt_25.00000_20modsx7rows_origin0,0.rad',
  'scene': {'module': {'x': 1.0, 'y': 1.59, 'z': 0.02, 'modulematerial': 'black', 'scenex': 1.05, 'sceney': 3.33, 'scenez': 0.0, 'numpanels': 2, 'bifi': 0.9, 'text': '! genbox black test-module 1.0 1.59 0.02 | xform -t -0.5 -1.665 0 -a 2 -t 0 1.74 0\n!xform -rz 0 C:\\Users\\sayala\\Documents\\GitHub\\bifacial_radiance\\tests\\customTT.rad | xform -rz 90 -t 0.5 0 -0.15', 'modulefile': 'objects\\test-module.rad', 'glass': False, 'offsetfromaxis': 0, 'xgap': 0.05, 'ygap': 0.15, 'zgap': 0.0}, 'modulefile': 'objects\\test-module.rad', 'hpc': False, 'name': 'Scene0', 'gcr': 0.32999702705381034, 'text': '!xform -rx 25.0 -t 0 0 2.3 -a 20 -t 1.05 0 0 -a 7 -t 0 10.091 0 -i 1 -t -9.450000000000001 -30.272999999999996 0 -rz 90.0 -t 0 0 0 objects\\test-module.rad', 'radfiles': 'objects\\1axis-25.0__C_1.59634_rtr_10.09100_tilt_25.00000_20modsx7rows_origin0,0.rad', 'sceneDict': {'tilt': 25.0, 'gcr': 0.33, 'clearance_height': 1.5963405942017352, 'azimuth': 90.0, 'nMods': 20, 'nRows': 7, 'modulez': 0.02, 'axis_tilt': 0, 'originx': 0, 'originy': 0}},
  'octfile': '1axis_-25.0.oct',
  'Results': [{'rowWanted': 2,
    'modWanted': 9,
    'AnalysisObj': {'octfile': '1axis_-25.0.oct', 'name': '1axis_-25.0', 'hpc': False, 'modWanted': 9, 'rowWanted': 2, 'x': [21.3979, 21.09609, 20.79429, 20.49249, 20.19069, 19.88889, 19.58709, 19.28529, 18.98349], 'y': [-1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05], 'z': [1.756105, 1.896837, 2.037569, 2.178301, 2.319032, 2.459764, 2.600496, 2.741228, 2.88196], 'rearZ': [1.736166, 1.876898, 2.01763, 2.158362, 2.299094, 2.439826, 2.580557, 2.721289, 2.862021], 'mattype': ['a8.1.a0.test-module.6457', 'a8.1.a0.test-module.6457', 'a8.1.a0.test-module.6457', 'a8.1.a0.test-module.6457', 'a8.1.triangle_3', 'a8.1.a1.test-module.6457', 'a8.1.a1.test-module.6457', 'a8.1.a1.test-module.6457', 'a8.1.a1.test-module.6457'], 'rearMat': ['a8.1.a0.test-module.2310', 'a8.1.a0.test-module.2310', 'a8.1.a0.test-module.2310', 'a8.1.a0.test-module.2310', 'a8.1.triangle_2', 'a8.1.a1.test-module.2310', 'a8.1.a1.test-module.2310', 'a8.1.a1.test-module.2310', 'a8.1.a1.test-module.2310'], 'Wm2Front': [20530.493333333336, 20551.54333333333, 20572.313333333335, 20751.946666666667, 10.276498666666667, 21006.033333333336, 21029.850000000002, 20569.26, 20576.173333333336], 'Wm2Back': [2808.692333333334, 2561.448, 2358.377, 1852.8793333333333, 39.780319999999996, 2096.947666666667, 2507.895666666667, 2707.3313333333335, 2859.491666666667], 'Back/FrontRatio': [0.13680587947525147, 0.12463530518460794, 0.1146383903039397, 0.08928700877120883, 3.8706227351817377, 0.09982596588158167, 0.1192540863302677, 0.13162025282937165, 0.13897100696869094], 'backRatio': [0.13680587947525147, 0.12463530518460794, 0.1146383903039397, 0.08928700877120883, 3.8706227351817377, 0.09982596588158167, 0.1192540863302677, 0.13162025282937165, 0.13897100696869094], 'rearX': [21.3886, 21.0868, 20.785, 20.4832, 20.1814, 19.8796, 19.57779, 19.27599, 18.97419], 'rearY': [-1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05]},
    'Wm2Front': [20530.493333333336,
     20551.54333333333,
     20572.313333333335,
     20751.946666666667,
     10.276498666666667,
     21006.033333333336,
     21029.850000000002,
     20569.26,
     20576.173333333336],
    'Wm2Back': [2808.692333333334,
     2561.448,
     2358.377,
     1852.8793333333333,
     39.780319999999996,
     2096.947666666667,
     2507.895666666667,
     2707.3313333333335,
     2859.491666666667],
    'backRatio': [0.13680587947525147,
     0.12463530518460794,
     0.1146383903039397,
     0.08928700877120883,
     3.8706227351817377,
     0.09982596588158167,
     0.1192540863302677,
     0.13162025282937165,
     0.13897100696869094]}]},
 5.0: {'csvfile': 'EPWs\\1axis_5.0.csv',
  'surf_azm': 90.0,
  'surf_tilt': -5.0,
  'datetime': Index(['2021-05-01 13:00:00', '2021-05-02 13:00:00', '2021-05-03 13:00:00',
         '2021-05-04 13:00:00', '2021-05-05 13:00:00', '2021-05-06 13:00:00',
         '2021-05-07 13:00:00', '2021-05-08 13:00:00', '2021-05-09 13:00:00',
         '2021-05-10 13:00:00', '2021-05-11 13:00:00', '2021-05-12 13:00:00',
         '2021-05-13 13:00:00', '2021-05-14 13:00:00', '2021-05-15 13:00:00',
         '2021-05-16 13:00:00', '2021-05-17 13:00:00', '2021-05-18 13:00:00',
         '2021-05-19 13:00:00', '2021-05-20 13:00:00', '2021-05-21 13:00:00',
         '2021-05-22 13:00:00', '2021-05-23 13:00:00', '2021-05-24 13:00:00',
         '2021-05-25 13:00:00', '2021-05-26 13:00:00', '2021-05-27 13:00:00',
         '2021-05-28 13:00:00', '2021-05-29 13:00:00', '2021-05-30 13:00:00'],
        dtype='object'),
  'count': 30,
  'skyfile': 'skies\\1axis_5.0.rad',
  'radfile': 'objects\\1axis5.0__C_2.15489_rtr_10.09100_tilt_-5.00000_20modsx7rows_origin0,0.rad',
  'scene': {'module': {'x': 1.0, 'y': 1.59, 'z': 0.02, 'modulematerial': 'black', 'scenex': 1.05, 'sceney': 3.33, 'scenez': 0.0, 'numpanels': 2, 'bifi': 0.9, 'text': '! genbox black test-module 1.0 1.59 0.02 | xform -t -0.5 -1.665 0 -a 2 -t 0 1.74 0\n!xform -rz 0 C:\\Users\\sayala\\Documents\\GitHub\\bifacial_radiance\\tests\\customTT.rad | xform -rz 90 -t 0.5 0 -0.15', 'modulefile': 'objects\\test-module.rad', 'glass': False, 'offsetfromaxis': 0, 'xgap': 0.05, 'ygap': 0.15, 'zgap': 0.0}, 'modulefile': 'objects\\test-module.rad', 'hpc': False, 'name': 'Scene0', 'gcr': 0.32999702705381034, 'text': '!xform -rx -5.0 -t 0 0 2.3 -a 20 -t 1.05 0 0 -a 7 -t 0 10.091 0 -i 1 -t -9.450000000000001 -30.272999999999996 0 -rz 90.0 -t 0 0 0 objects\\test-module.rad', 'radfiles': 'objects\\1axis5.0__C_2.15489_rtr_10.09100_tilt_-5.00000_20modsx7rows_origin0,0.rad', 'sceneDict': {'tilt': -5.0, 'gcr': 0.33, 'clearance_height': 2.154885688325149, 'azimuth': 90.0, 'nMods': 20, 'nRows': 7, 'modulez': 0.02, 'axis_tilt': 0, 'originx': 0, 'originy': 0}},
  'octfile': '1axis_5.0.oct',
  'Results': [{'rowWanted': 2,
    'modWanted': 9,
    'AnalysisObj': {'octfile': '1axis_5.0.oct', 'name': '1axis_5.0', 'hpc': False, 'modWanted': 9, 'rowWanted': 2, 'x': [21.50692, 21.17519, 20.84345, 20.51172, 20.17999, 19.84826, 19.51652, 19.18479, 18.85306], 'y': [-1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05], 'z': [2.437012, 2.407989, 2.378966, 2.349943, 2.32092, 2.291897, 2.262874, 2.233852, 2.204829], 'rearZ': [2.415095, 2.386072, 2.35705, 2.328027, 2.299004, 2.269981, 2.240958, 2.211935, 2.182912], 'mattype': ['a8.1.a0.test-module.6457', 'a8.1.a0.test-module.6457', 'a8.1.a0.test-module.6457', 'a8.1.a0.test-module.6457', 'a8.1.triangle_3', 'a8.1.a1.test-module.6457', 'a8.1.a1.test-module.6457', 'a8.1.a1.test-module.6457', 'a8.1.a1.test-module.6457'], 'rearMat': ['a8.1.a0.test-module.2310', 'a8.1.a0.test-module.2310', 'a8.1.a0.test-module.2310', 'a8.1.a0.test-module.2310', 'a8.1.triangle_2', 'a8.1.a1.test-module.2310', 'a8.1.a1.test-module.2310', 'a8.1.a1.test-module.2310', 'a8.1.a1.test-module.2310'], 'Wm2Front': [21480.373333333333, 21481.166666666668, 21481.66, 21482.149999999998, 4.8043173333333336, 21483.13333333333, 21483.63, 21484.12, 21168.29666666667], 'Wm2Back': [2829.3816666666667, 2655.5813333333335, 2473.2309999999998, 1798.7023333333334, 47.43945666666667, 1876.689, 2665.655666666666, 2889.7063333333335, 3137.7746666666667], 'Back/FrontRatio': [0.13171938359919644, 0.12362369562685008, 0.11513220509345157, 0.08373008519181034, 9.87228384223255, 0.08735638714915638, 0.1240784514808817, 0.1345042849709017, 0.14822990096211955], 'backRatio': [0.13171938359919644, 0.12362369562685008, 0.11513220509345157, 0.08373008519181034, 9.87228384223255, 0.08735638714915638, 0.1240784514808817, 0.1345042849709017, 0.14822990096211955], 'rearX': [21.50884, 21.1771, 20.84537, 20.51364, 20.18191, 19.85017, 19.51844, 19.18671, 18.85497], 'rearY': [-1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05]},
    'Wm2Front': [21480.373333333333,
     21481.166666666668,
     21481.66,
     21482.149999999998,
     4.8043173333333336,
     21483.13333333333,
     21483.63,
     21484.12,
     21168.29666666667],
    'Wm2Back': [2829.3816666666667,
     2655.5813333333335,
     2473.2309999999998,
     1798.7023333333334,
     47.43945666666667,
     1876.689,
     2665.655666666666,
     2889.7063333333335,
     3137.7746666666667],
    'backRatio': [0.13171938359919644,
     0.12362369562685008,
     0.11513220509345157,
     0.08373008519181034,
     9.87228384223255,
     0.08735638714915638,
     0.1240784514808817,
     0.1345042849709017,
     0.14822990096211955]}]},
 20.0: {'csvfile': 'EPWs\\1axis_20.0.csv',
  'surf_azm': 90.0,
  'surf_tilt': -20.0,
  'datetime': Index(['2021-05-01 14:00:00', '2021-05-02 14:00:00', '2021-05-03 14:00:00',
         '2021-05-04 14:00:00', '2021-05-05 14:00:00', '2021-05-06 14:00:00',
         '2021-05-07 14:00:00', '2021-05-08 14:00:00', '2021-05-09 14:00:00',
         '2021-05-10 14:00:00', '2021-05-11 14:00:00', '2021-05-12 14:00:00',
         '2021-05-13 14:00:00', '2021-05-14 14:00:00', '2021-05-15 14:00:00',
         '2021-05-16 14:00:00', '2021-05-17 14:00:00', '2021-05-18 14:00:00',
         '2021-05-19 14:00:00', '2021-05-20 14:00:00', '2021-05-21 14:00:00',
         '2021-05-22 14:00:00', '2021-05-22 19:00:00', '2021-05-23 14:00:00',
         '2021-05-23 19:00:00', '2021-05-24 14:00:00', '2021-05-24 19:00:00',
         '2021-05-25 14:00:00', '2021-05-25 19:00:00', '2021-05-26 14:00:00',
         '2021-05-26 19:00:00', '2021-05-27 14:00:00', '2021-05-27 19:00:00',
         '2021-05-28 14:00:00', '2021-05-28 19:00:00', '2021-05-29 14:00:00',
         '2021-05-29 19:00:00', '2021-05-30 14:00:00', '2021-05-30 19:00:00'],
        dtype='object'),
  'count': 39,
  'skyfile': 'skies\\1axis_20.0.rad',
  'radfile': 'objects\\1axis20.0__C_1.73054_rtr_10.09100_tilt_-20.00000_20modsx7rows_origin0,0.rad',
  'scene': {'module': {'x': 1.0, 'y': 1.59, 'z': 0.02, 'modulematerial': 'black', 'scenex': 1.05, 'sceney': 3.33, 'scenez': 0.0, 'numpanels': 2, 'bifi': 0.9, 'text': '! genbox black test-module 1.0 1.59 0.02 | xform -t -0.5 -1.665 0 -a 2 -t 0 1.74 0\n!xform -rz 0 C:\\Users\\sayala\\Documents\\GitHub\\bifacial_radiance\\tests\\customTT.rad | xform -rz 90 -t 0.5 0 -0.15', 'modulefile': 'objects\\test-module.rad', 'glass': False, 'offsetfromaxis': 0, 'xgap': 0.05, 'ygap': 0.15, 'zgap': 0.0}, 'modulefile': 'objects\\test-module.rad', 'hpc': False, 'name': 'Scene0', 'gcr': 0.32999702705381034, 'text': '!xform -rx -20.0 -t 0 0 2.3 -a 20 -t 1.05 0 0 -a 7 -t 0 10.091 0 -i 1 -t -9.450000000000001 -30.272999999999996 0 -rz 90.0 -t 0 0 0 objects\\test-module.rad', 'radfiles': 'objects\\1axis20.0__C_1.73054_rtr_10.09100_tilt_-20.00000_20modsx7rows_origin0,0.rad', 'sceneDict': {'tilt': -20.0, 'gcr': 0.33, 'clearance_height': 1.7305364613627614, 'azimuth': 90.0, 'nMods': 20, 'nRows': 7, 'modulez': 0.02, 'axis_tilt': 0, 'originx': 0, 'originy': 0}},
  'octfile': '1axis_20.0.oct',
  'Results': [{'rowWanted': 2,
    'modWanted': 9,
    'AnalysisObj': {'octfile': '1axis_20.0.oct', 'name': '1axis_20.0', 'hpc': False, 'modWanted': 9, 'rowWanted': 2, 'x': [21.42631, 21.11339, 20.80047, 20.48755, 20.17464, 19.86172, 19.5488, 19.23588, 18.92297], 'y': [-1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05], 'z': [2.775304, 2.661412, 2.547519, 2.433626, 2.319734, 2.205841, 2.091948, 1.978055, 1.864163], 'rearZ': [2.754631, 2.640738, 2.526846, 2.412953, 2.29906, 2.185168, 2.071275, 1.957382, 1.843489], 'mattype': ['a8.1.a0.test-module.6457', 'a8.1.a0.test-module.6457', 'a8.1.a0.test-module.6457', 'a8.1.a0.test-module.6457', 'a8.1.triangle_3', 'a8.1.a1.test-module.6457', 'a8.1.a1.test-module.6457', 'a8.1.a1.test-module.6457', 'a8.1.a1.test-module.6457'], 'rearMat': ['a8.1.a0.test-module.2310', 'a8.1.a0.test-module.2310', 'a8.1.a0.test-module.2310', 'a8.1.a0.test-module.2310', 'a8.1.triangle_2', 'a8.1.a1.test-module.2310', 'a8.1.a1.test-module.2310', 'a8.1.a1.test-module.2310', 'a8.1.a1.test-module.2310'], 'Wm2Front': [23098.753333333338, 23089.38333333333, 23079.843333333334, 23070.306666666667, 10.213618666666667, 22728.41, 22719.053333333333, 21393.32, 21358.75], 'Wm2Back': [2722.1833333333334, 2594.1073333333334, 2440.3963333333336, 1882.118333333333, 51.19131333333333, 1876.9663333333335, 2623.6453333333334, 2861.109, 3118.1929999999998], 'Back/FrontRatio': [0.1178497893890757, 0.11235064980006036, 0.10573712275038019, 0.08158184799818374, 5.01157360875211, 0.082582382610616, 0.11548215409141957, 0.13373842237958286, 0.1459913550188398], 'backRatio': [0.1178497893890757, 0.11235064980006036, 0.10573712275038019, 0.08158184799818374, 5.01157360875211, 0.082582382610616, 0.11548215409141957, 0.13373842237958286, 0.1459913550188398], 'rearX': [21.43383, 21.12091, 20.808, 20.49508, 20.18216, 19.86924, 19.55632, 19.24341, 18.93049], 'rearY': [-1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05]},
    'Wm2Front': [23098.753333333338,
     23089.38333333333,
     23079.843333333334,
     23070.306666666667,
     10.213618666666667,
     22728.41,
     22719.053333333333,
     21393.32,
     21358.75],
    'Wm2Back': [2722.1833333333334,
     2594.1073333333334,
     2440.3963333333336,
     1882.118333333333,
     51.19131333333333,
     1876.9663333333335,
     2623.6453333333334,
     2861.109,
     3118.1929999999998],
    'backRatio': [0.1178497893890757,
     0.11235064980006036,
     0.10573712275038019,
     0.08158184799818374,
     5.01157360875211,
     0.082582382610616,
     0.11548215409141957,
     0.13373842237958286,
     0.1459913550188398]}]},
 35.0: {'csvfile': 'EPWs\\1axis_35.0.csv',
  'surf_azm': 90.0,
  'surf_tilt': -35.0,
  'datetime': Index(['2021-05-01 15:00:00', '2021-05-02 15:00:00', '2021-05-03 15:00:00',
         '2021-05-04 15:00:00', '2021-05-05 15:00:00', '2021-05-06 15:00:00',
         '2021-05-07 15:00:00', '2021-05-08 15:00:00', '2021-05-09 15:00:00',
         '2021-05-10 15:00:00', '2021-05-11 15:00:00', '2021-05-12 15:00:00',
         '2021-05-13 15:00:00', '2021-05-14 15:00:00', '2021-05-15 15:00:00',
         '2021-05-16 15:00:00', '2021-05-17 15:00:00', '2021-05-18 15:00:00',
         '2021-05-19 15:00:00', '2021-05-20 15:00:00', '2021-05-21 15:00:00',
         '2021-05-22 15:00:00', '2021-05-23 15:00:00', '2021-05-24 15:00:00',
         '2021-05-25 15:00:00', '2021-05-26 15:00:00', '2021-05-27 15:00:00',
         '2021-05-28 15:00:00', '2021-05-29 15:00:00', '2021-05-30 15:00:00'],
        dtype='object'),
  'count': 30,
  'skyfile': 'skies\\1axis_35.0.rad',
  'radfile': 'objects\\1axis35.0__C_1.34500_rtr_10.09100_tilt_-35.00000_20modsx7rows_origin0,0.rad',
  'scene': {'module': {'x': 1.0, 'y': 1.59, 'z': 0.02, 'modulematerial': 'black', 'scenex': 1.05, 'sceney': 3.33, 'scenez': 0.0, 'numpanels': 2, 'bifi': 0.9, 'text': '! genbox black test-module 1.0 1.59 0.02 | xform -t -0.5 -1.665 0 -a 2 -t 0 1.74 0\n!xform -rz 0 C:\\Users\\sayala\\Documents\\GitHub\\bifacial_radiance\\tests\\customTT.rad | xform -rz 90 -t 0.5 0 -0.15', 'modulefile': 'objects\\test-module.rad', 'glass': False, 'offsetfromaxis': 0, 'xgap': 0.05, 'ygap': 0.15, 'zgap': 0.0}, 'modulefile': 'objects\\test-module.rad', 'hpc': False, 'name': 'Scene0', 'gcr': 0.32999702705381034, 'text': '!xform -rx -35.0 -t 0 0 2.3 -a 20 -t 1.05 0 0 -a 7 -t 0 10.091 0 -i 1 -t -9.450000000000001 -30.272999999999996 0 -rz 90.0 -t 0 0 0 objects\\test-module.rad', 'radfiles': 'objects\\1axis35.0__C_1.34500_rtr_10.09100_tilt_-35.00000_20modsx7rows_origin0,0.rad', 'sceneDict': {'tilt': -35.0, 'gcr': 0.33, 'clearance_height': 1.3449952334755082, 'azimuth': 90.0, 'nMods': 20, 'nRows': 7, 'modulez': 0.02, 'axis_tilt': 0, 'originx': 0, 'originy': 0}},
  'octfile': '1axis_35.0.oct',
  'Results': [{'rowWanted': 2,
    'modWanted': 9,
    'AnalysisObj': {'octfile': '1axis_35.0.oct', 'name': '1axis_35.0', 'hpc': False, 'modWanted': 9, 'rowWanted': 2, 'x': [21.26088, 20.98811, 20.71533, 20.44255, 20.16977, 19.897, 19.62422, 19.35144, 19.07866], 'y': [-1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05], 'z': [3.081206, 2.890205, 2.699204, 2.508203, 2.317202, 2.126201, 1.9352, 1.744199, 1.553198], 'rearZ': [3.063185, 2.872184, 2.681183, 2.490182, 2.299181, 2.10818, 1.917179, 1.726178, 1.535177], 'mattype': ['a8.1.a0.test-module.6457', 'a8.1.a0.test-module.6457', 'a8.1.a0.test-module.6457', 'a8.1.a0.test-module.6457', 'a8.1.triangle_3', 'a8.1.a1.test-module.6457', 'a8.1.a1.test-module.6457', 'a8.1.a1.test-module.6457', 'a8.1.a1.test-module.6457'], 'rearMat': ['a8.1.a0.test-module.2310', 'a8.1.a0.test-module.2310', 'a8.1.a0.test-module.2310', 'a8.1.a0.test-module.2310', 'a8.1.triangle_2', 'a8.1.a1.test-module.2310', 'a8.1.a1.test-module.2310', 'a8.1.a1.test-module.2310', 'a8.1.a1.test-module.2310'], 'Wm2Front': [20707.286666666667, 20683.843333333334, 20660.23, 20806.976666666666, 20.05142, 21190.966666666667, 21146.983333333334, 20707.806666666667, 20644.446666666667], 'Wm2Back': [2233.467666666667, 2163.2566666666667, 2075.302, 1797.946, 44.96373, 1713.1133333333335, 2207.521, 2437.7016666666664, 2648.7586666666666], 'Back/FrontRatio': [0.10785901575424421, 0.10458677950792931, 0.10044911888932898, 0.08641072378716287, 2.242309407044137, 0.08084167557992436, 0.10438939969896102, 0.11771896406931728, 0.12830368288048005], 'backRatio': [0.10785901575424421, 0.10458677950792931, 0.10044911888932898, 0.08641072378716287, 2.242309407044137, 0.08084167557992436, 0.10438939969896102, 0.11771896406931728, 0.12830368288048005], 'rearX': [21.2735, 21.00072, 20.72795, 20.45517, 20.18239, 19.90961, 19.63684, 19.36406, 19.09128], 'rearY': [-1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05]},
    'Wm2Front': [20707.286666666667,
     20683.843333333334,
     20660.23,
     20806.976666666666,
     20.05142,
     21190.966666666667,
     21146.983333333334,
     20707.806666666667,
     20644.446666666667],
    'Wm2Back': [2233.467666666667,
     2163.2566666666667,
     2075.302,
     1797.946,
     44.96373,
     1713.1133333333335,
     2207.521,
     2437.7016666666664,
     2648.7586666666666],
    'backRatio': [0.10785901575424421,
     0.10458677950792931,
     0.10044911888932898,
     0.08641072378716287,
     2.242309407044137,
     0.08084167557992436,
     0.10438939969896102,
     0.11771896406931728,
     0.12830368288048005]}]},
 50.0: {'csvfile': 'EPWs\\1axis_50.0.csv',
  'surf_azm': 90.0,
  'surf_tilt': -50.0,
  'datetime': Index(['2021-05-01 16:00:00', '2021-05-01 17:00:00', '2021-05-02 16:00:00',
         '2021-05-02 17:00:00', '2021-05-03 16:00:00', '2021-05-03 17:00:00',
         '2021-05-04 16:00:00', '2021-05-04 17:00:00', '2021-05-05 16:00:00',
         '2021-05-05 17:00:00', '2021-05-06 16:00:00', '2021-05-06 17:00:00',
         '2021-05-07 16:00:00', '2021-05-07 17:00:00', '2021-05-07 18:00:00',
         '2021-05-08 16:00:00', '2021-05-08 17:00:00', '2021-05-08 18:00:00',
         '2021-05-09 16:00:00', '2021-05-09 17:00:00', '2021-05-09 18:00:00',
         '2021-05-10 16:00:00', '2021-05-10 17:00:00', '2021-05-10 18:00:00',
         '2021-05-11 16:00:00', '2021-05-11 17:00:00', '2021-05-11 18:00:00',
         '2021-05-12 16:00:00', '2021-05-12 17:00:00', '2021-05-12 18:00:00',
         '2021-05-13 16:00:00', '2021-05-13 17:00:00', '2021-05-13 18:00:00',
         '2021-05-14 16:00:00', '2021-05-14 17:00:00', '2021-05-14 18:00:00',
         '2021-05-15 16:00:00', '2021-05-15 17:00:00', '2021-05-15 18:00:00',
         '2021-05-16 16:00:00', '2021-05-16 17:00:00', '2021-05-16 18:00:00',
         '2021-05-17 17:00:00', '2021-05-17 18:00:00', '2021-05-18 17:00:00',
         '2021-05-18 18:00:00', '2021-05-19 17:00:00', '2021-05-19 18:00:00',
         '2021-05-20 17:00:00', '2021-05-20 18:00:00', '2021-05-21 17:00:00',
         '2021-05-21 18:00:00', '2021-05-22 17:00:00', '2021-05-22 18:00:00',
         '2021-05-23 17:00:00', '2021-05-23 18:00:00', '2021-05-24 17:00:00',
         '2021-05-24 18:00:00', '2021-05-25 17:00:00', '2021-05-25 18:00:00',
         '2021-05-26 17:00:00', '2021-05-26 18:00:00', '2021-05-27 17:00:00',
         '2021-05-27 18:00:00', '2021-05-28 17:00:00', '2021-05-28 18:00:00',
         '2021-05-29 17:00:00', '2021-05-29 18:00:00', '2021-05-30 17:00:00',
         '2021-05-30 18:00:00'],
        dtype='object'),
  'count': 70,
  'skyfile': 'skies\\1axis_50.0.rad',
  'radfile': 'objects\\1axis50.0__C_1.02454_rtr_10.09100_tilt_-50.00000_20modsx7rows_origin0,0.rad',
  'scene': {'module': {'x': 1.0, 'y': 1.59, 'z': 0.02, 'modulematerial': 'black', 'scenex': 1.05, 'sceney': 3.33, 'scenez': 0.0, 'numpanels': 2, 'bifi': 0.9, 'text': '! genbox black test-module 1.0 1.59 0.02 | xform -t -0.5 -1.665 0 -a 2 -t 0 1.74 0\n!xform -rz 0 C:\\Users\\sayala\\Documents\\GitHub\\bifacial_radiance\\tests\\customTT.rad | xform -rz 90 -t 0.5 0 -0.15', 'modulefile': 'objects\\test-module.rad', 'glass': False, 'offsetfromaxis': 0, 'xgap': 0.05, 'ygap': 0.15, 'zgap': 0.0}, 'modulefile': 'objects\\test-module.rad', 'hpc': False, 'name': 'Scene0', 'gcr': 0.32999702705381034, 'text': '!xform -rx -50.0 -t 0 0 2.3 -a 20 -t 1.05 0 0 -a 7 -t 0 10.091 0 -i 1 -t -9.450000000000001 -30.272999999999996 0 -rz 90.0 -t 0 0 0 objects\\test-module.rad', 'radfiles': 'objects\\1axis50.0__C_1.02454_rtr_10.09100_tilt_-50.00000_20modsx7rows_origin0,0.rad', 'sceneDict': {'tilt': -50.0, 'gcr': 0.33, 'clearance_height': 1.0245360022069014, 'azimuth': 90.0, 'nMods': 20, 'nRows': 7, 'modulez': 0.02, 'axis_tilt': 0, 'originx': 0, 'originy': 0}},
  'octfile': '1axis_50.0.oct',
  'Results': [{'rowWanted': 2,
    'modWanted': 9,
    'AnalysisObj': {'octfile': '1axis_50.0.oct', 'name': '1axis_50.0', 'hpc': False, 'modWanted': 9, 'rowWanted': 2, 'x': [21.02192, 20.80788, 20.59383, 20.37978, 20.16573, 19.95168, 19.73763, 19.52359, 19.30954], 'y': [-1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05], 'z': [3.33387, 3.078777, 2.823684, 2.568591, 2.313499, 2.058406, 1.803313, 1.54822, 1.293127], 'rearZ': [3.319728, 3.064636, 2.809543, 2.55445, 2.299357, 2.044264, 1.789172, 1.534079, 1.278986], 'mattype': ['a8.1.a0.test-module.6457', 'a8.1.a0.test-module.6457', 'a8.1.a0.test-module.6457', 'a8.1.a0.test-module.6457', 'a8.1.triangle_3', 'a8.1.a1.test-module.6457', 'a8.1.a1.test-module.6457', 'a8.1.a1.test-module.6457', 'a8.1.a1.test-module.6457'], 'rearMat': ['a8.1.a0.test-module.2310', 'a8.1.a0.test-module.2310', 'a8.1.a0.test-module.2310', 'a8.1.a0.test-module.2310', 'a8.1.triangle_2', 'a8.1.a1.test-module.2310', 'a8.1.a1.test-module.2310', 'a8.1.a1.test-module.2310', 'a8.1.a1.test-module.2310'], 'Wm2Front': [36566.950000000004, 36372.939999999995, 37429.18, 37202.29666666667, 53.727106666666664, 34958.1, 34489.01666666666, 35242.47, 34177.37333333333], 'Wm2Back': [3322.5229999999997, 3243.905666666667, 3202.3306666666667, 2900.2043333333336, 62.269106666666666, 2326.8373333333334, 3175.1873333333333, 3480.3963333333336, 3671.172666666667], 'Back/FrontRatio': [0.09086136276442626, 0.08918458550455592, 0.08555705952173163, 0.07795766700538828, 1.158967075705627, 0.0665607474883528, 0.09206372196567734, 0.09875574085975225, 0.10741529266881564], 'backRatio': [0.09086136276442626, 0.08918458550455592, 0.08555705952173163, 0.07795766700538828, 1.158967075705627, 0.0665607474883528, 0.09206372196567734, 0.09875574085975225, 0.10741529266881564], 'rearX': [21.03878, 20.82473, 20.61068, 20.39663, 20.18258, 19.96854, 19.75449, 19.54044, 19.32639], 'rearY': [-1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05]},
    'Wm2Front': [36566.950000000004,
     36372.939999999995,
     37429.18,
     37202.29666666667,
     53.727106666666664,
     34958.1,
     34489.01666666666,
     35242.47,
     34177.37333333333],
    'Wm2Back': [3322.5229999999997,
     3243.905666666667,
     3202.3306666666667,
     2900.2043333333336,
     62.269106666666666,
     2326.8373333333334,
     3175.1873333333333,
     3480.3963333333336,
     3671.172666666667],
    'backRatio': [0.09086136276442626,
     0.08918458550455592,
     0.08555705952173163,
     0.07795766700538828,
     1.158967075705627,
     0.0665607474883528,
     0.09206372196567734,
     0.09875574085975225,
     0.10741529266881564]}]},
 45.0: {'csvfile': 'EPWs\\1axis_45.0.csv',
  'surf_azm': 90.0,
  'surf_tilt': -45.0,
  'datetime': Index(['2021-05-01 18:00:00', '2021-05-02 18:00:00', '2021-05-03 18:00:00',
         '2021-05-04 18:00:00', '2021-05-05 18:00:00', '2021-05-06 18:00:00',
         '2021-05-17 16:00:00', '2021-05-18 16:00:00', '2021-05-19 16:00:00',
         '2021-05-20 16:00:00', '2021-05-21 16:00:00', '2021-05-22 16:00:00',
         '2021-05-23 16:00:00', '2021-05-24 16:00:00', '2021-05-25 16:00:00',
         '2021-05-26 16:00:00', '2021-05-27 16:00:00', '2021-05-28 16:00:00',
         '2021-05-29 16:00:00', '2021-05-30 16:00:00'],
        dtype='object'),
  'count': 20,
  'skyfile': 'skies\\1axis_45.0.rad',
  'radfile': 'objects\\1axis45.0__C_1.12267_rtr_10.09100_tilt_-45.00000_20modsx7rows_origin0,0.rad',
  'scene': {'module': {'x': 1.0, 'y': 1.59, 'z': 0.02, 'modulematerial': 'black', 'scenex': 1.05, 'sceney': 3.33, 'scenez': 0.0, 'numpanels': 2, 'bifi': 0.9, 'text': '! genbox black test-module 1.0 1.59 0.02 | xform -t -0.5 -1.665 0 -a 2 -t 0 1.74 0\n!xform -rz 0 C:\\Users\\sayala\\Documents\\GitHub\\bifacial_radiance\\tests\\customTT.rad | xform -rz 90 -t 0.5 0 -0.15', 'modulefile': 'objects\\test-module.rad', 'glass': False, 'offsetfromaxis': 0, 'xgap': 0.05, 'ygap': 0.15, 'zgap': 0.0}, 'modulefile': 'objects\\test-module.rad', 'hpc': False, 'name': 'Scene0', 'gcr': 0.32999702705381034, 'text': '!xform -rx -45.0 -t 0 0 2.3 -a 20 -t 1.05 0 0 -a 7 -t 0 10.091 0 -i 1 -t -9.450000000000001 -30.272999999999996 0 -rz 90.0 -t 0 0 0 objects\\test-module.rad', 'radfiles': 'objects\\1axis45.0__C_1.12267_rtr_10.09100_tilt_-45.00000_20modsx7rows_origin0,0.rad', 'sceneDict': {'tilt': -45.0, 'gcr': 0.33, 'clearance_height': 1.1226672093243981, 'azimuth': 90.0, 'nMods': 20, 'nRows': 7, 'modulez': 0.02, 'axis_tilt': 0, 'originx': 0, 'originy': 0}},
  'octfile': '1axis_45.0.oct',
  'Results': [{'rowWanted': 2,
    'modWanted': 9,
    'AnalysisObj': {'octfile': '1axis_45.0.oct', 'name': '1axis_45.0', 'hpc': False, 'modWanted': 9, 'rowWanted': 2, 'x': [21.10884, 20.87337, 20.6379, 20.40244, 20.16697, 19.9315, 19.69604, 19.46057, 19.2251], 'y': [-1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05], 'z': [3.256715, 3.021249, 2.785782, 2.550316, 2.314849, 2.079383, 1.843916, 1.60845, 1.372983], 'rearZ': [3.241159, 3.005693, 2.770226, 2.534759, 2.299293, 2.063826, 1.82836, 1.592893, 1.357427], 'mattype': ['a8.1.a0.test-module.6457', 'a8.1.a0.test-module.6457', 'a8.1.a0.test-module.6457', 'a8.1.a0.test-module.6457', 'a8.1.triangle_3', 'a8.1.a1.test-module.6457', 'a8.1.a1.test-module.6457', 'a8.1.a1.test-module.6457', 'a8.1.a1.test-module.6457'], 'rearMat': ['a8.1.a0.test-module.2310', 'a8.1.a0.test-module.2310', 'a8.1.a0.test-module.2310', 'a8.1.a0.test-module.2310', 'a8.1.triangle_2', 'a8.1.a1.test-module.2310', 'a8.1.a1.test-module.2310', 'a8.1.a1.test-module.2310', 'a8.1.a1.test-module.2310'], 'Wm2Front': [11095.576666666666, 11059.476666666667, 10807.62, 10762.953333333333, 7.127942333333333, 10729.216666666667, 10668.903333333334, 10544.753333333334, 10418.96], 'Wm2Back': [970.4978666666666, 946.2393333333333, 913.8964666666667, 817.5165333333334, 12.202736666666667, 678.0835, 961.5448, 1033.1653333333334, 1100.812], 'Back/FrontRatio': [0.08746708786350406, 0.08555913415199566, 0.08456037333902314, 0.07595651788667815, 1.7117176849095006, 0.06319971512057744, 0.09012591827220745, 0.09797908046727688, 0.1056546809225987], 'backRatio': [0.08746708786350406, 0.08555913415199566, 0.08456037333902314, 0.07595651788667815, 1.7117176849095006, 0.06319971512057744, 0.09012591827220745, 0.09797908046727688, 0.1056546809225987], 'rearX': [21.12439, 20.88892, 20.65346, 20.41799, 20.18253, 19.94706, 19.71159, 19.47613, 19.24066], 'rearY': [-1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05]},
    'Wm2Front': [11095.576666666666,
     11059.476666666667,
     10807.62,
     10762.953333333333,
     7.127942333333333,
     10729.216666666667,
     10668.903333333334,
     10544.753333333334,
     10418.96],
    'Wm2Back': [970.4978666666666,
     946.2393333333333,
     913.8964666666667,
     817.5165333333334,
     12.202736666666667,
     678.0835,
     961.5448,
     1033.1653333333334,
     1100.812],
    'backRatio': [0.08746708786350406,
     0.08555913415199566,
     0.08456037333902314,
     0.07595651788667815,
     1.7117176849095006,
     0.06319971512057744,
     0.09012591827220745,
     0.09797908046727688,
     0.1056546809225987]}]},
 10.0: {'csvfile': 'EPWs\\1axis_10.0.csv',
  'surf_azm': 90.0,
  'surf_tilt': -10.0,
  'datetime': Index(['2021-05-02 19:00:00', '2021-05-03 19:00:00', '2021-05-04 19:00:00',
         '2021-05-05 19:00:00', '2021-05-06 19:00:00', '2021-05-07 19:00:00'],
        dtype='object'),
  'count': 6,
  'skyfile': 'skies\\1axis_10.0.rad',
  'radfile': 'objects\\1axis10.0__C_2.01088_rtr_10.09100_tilt_-10.00000_20modsx7rows_origin0,0.rad',
  'scene': {'module': {'x': 1.0, 'y': 1.59, 'z': 0.02, 'modulematerial': 'black', 'scenex': 1.05, 'sceney': 3.33, 'scenez': 0.0, 'numpanels': 2, 'bifi': 0.9, 'text': '! genbox black test-module 1.0 1.59 0.02 | xform -t -0.5 -1.665 0 -a 2 -t 0 1.74 0\n!xform -rz 0 C:\\Users\\sayala\\Documents\\GitHub\\bifacial_radiance\\tests\\customTT.rad | xform -rz 90 -t 0.5 0 -0.15', 'modulefile': 'objects\\test-module.rad', 'glass': False, 'offsetfromaxis': 0, 'xgap': 0.05, 'ygap': 0.15, 'zgap': 0.0}, 'modulefile': 'objects\\test-module.rad', 'hpc': False, 'name': 'Scene0', 'gcr': 0.32999702705381034, 'text': '!xform -rx -10.0 -t 0 0 2.3 -a 20 -t 1.05 0 0 -a 7 -t 0 10.091 0 -i 1 -t -9.450000000000001 -30.272999999999996 0 -rz 90.0 -t 0 0 0 objects\\test-module.rad', 'radfiles': 'objects\\1axis10.0__C_2.01088_rtr_10.09100_tilt_-10.00000_20modsx7rows_origin0,0.rad', 'sceneDict': {'tilt': -10.0, 'gcr': 0.33, 'clearance_height': 2.010875784184561, 'azimuth': 90.0, 'nMods': 20, 'nRows': 7, 'modulez': 0.02, 'axis_tilt': 0, 'originx': 0, 'originy': 0}},
  'octfile': '1axis_10.0.oct',
  'Results': [{'rowWanted': 2,
    'modWanted': 9,
    'AnalysisObj': {'octfile': '1axis_10.0.oct', 'name': '1axis_10.0', 'hpc': False, 'modWanted': 9, 'rowWanted': 2, 'x': [21.48994, 21.16199, 20.83405, 20.50611, 20.17817, 19.85023, 19.52229, 19.19435, 18.86641], 'y': [-1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05], 'z': [2.55198, 2.494155, 2.436331, 2.378506, 2.320681, 2.262856, 2.205031, 2.147206, 2.089382], 'rearZ': [2.530315, 2.47249, 2.414665, 2.35684, 2.299015, 2.24119, 2.183366, 2.125541, 2.067716], 'mattype': ['a8.1.a0.test-module.6457', 'a8.1.a0.test-module.6457', 'a8.1.a0.test-module.6457', 'a8.1.a0.test-module.6457', 'a8.1.triangle_3', 'a8.1.a1.test-module.6457', 'a8.1.a1.test-module.6457', 'a8.1.a1.test-module.6457', 'a8.1.a1.test-module.6457'], 'rearMat': ['a8.1.a0.test-module.2310', 'a8.1.a0.test-module.2310', 'a8.1.a0.test-module.2310', 'a8.1.a0.test-module.2310', 'a8.1.triangle_2', 'a8.1.a1.test-module.2310', 'a8.1.a1.test-module.2310', 'a8.1.a1.test-module.2310', 'a8.1.a1.test-module.2310'], 'Wm2Front': [562.7256333333333, 564.7414333333332, 566.7461333333332, 568.9970000000001, 0.5665011, 539.4918333333334, 538.8447333333332, 485.12533333333334, 485.4173333333333], 'Wm2Back': [33.79249333333333, 33.07703, 33.0786, 29.830923333333335, 0.3724578, 27.908503333333332, 32.60285666666667, 32.79472, 32.862653333333334], 'Back/FrontRatio': [0.060051348792862655, 0.058570116300215455, 0.05836571206888624, 0.052427114565136136, 0.6563120318180882, 0.05173099920697123, 0.060504991781197504, 0.0676003707625299, 0.06769965425011416], 'backRatio': [0.060051348792862655, 0.058570116300215455, 0.05836571206888624, 0.052427114565136136, 0.6563120318180882, 0.05173099920697123, 0.060504991781197504, 0.0676003707625299, 0.06769965425011416], 'rearX': [21.49376, 21.16581, 20.83787, 20.50993, 20.18199, 19.85405, 19.52611, 19.19817, 18.87023], 'rearY': [-1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05]},
    'Wm2Front': [562.7256333333333,
     564.7414333333332,
     566.7461333333332,
     568.9970000000001,
     0.5665011,
     539.4918333333334,
     538.8447333333332,
     485.12533333333334,
     485.4173333333333],
    'Wm2Back': [33.79249333333333,
     33.07703,
     33.0786,
     29.830923333333335,
     0.3724578,
     27.908503333333332,
     32.60285666666667,
     32.79472,
     32.862653333333334],
    'backRatio': [0.060051348792862655,
     0.058570116300215455,
     0.05836571206888624,
     0.052427114565136136,
     0.6563120318180882,
     0.05173099920697123,
     0.060504991781197504,
     0.0676003707625299,
     0.06769965425011416]}]},
 15.0: {'csvfile': 'EPWs\\1axis_15.0.csv',
  'surf_azm': 90.0,
  'surf_tilt': -15.0,
  'datetime': Index(['2021-05-08 19:00:00', '2021-05-09 19:00:00', '2021-05-10 19:00:00',
         '2021-05-11 19:00:00', '2021-05-12 19:00:00', '2021-05-13 19:00:00',
         '2021-05-14 19:00:00', '2021-05-15 19:00:00', '2021-05-16 19:00:00',
         '2021-05-17 19:00:00', '2021-05-18 19:00:00', '2021-05-19 19:00:00',
         '2021-05-20 19:00:00', '2021-05-21 19:00:00'],
        dtype='object'),
  'count': 14,
  'skyfile': 'skies\\1axis_15.0.rad',
  'radfile': 'objects\\1axis15.0__C_1.86907_rtr_10.09100_tilt_-15.00000_20modsx7rows_origin0,0.rad',
  'scene': {'module': {'x': 1.0, 'y': 1.59, 'z': 0.02, 'modulematerial': 'black', 'scenex': 1.05, 'sceney': 3.33, 'scenez': 0.0, 'numpanels': 2, 'bifi': 0.9, 'text': '! genbox black test-module 1.0 1.59 0.02 | xform -t -0.5 -1.665 0 -a 2 -t 0 1.74 0\n!xform -rz 0 C:\\Users\\sayala\\Documents\\GitHub\\bifacial_radiance\\tests\\customTT.rad | xform -rz 90 -t 0.5 0 -0.15', 'modulefile': 'objects\\test-module.rad', 'glass': False, 'offsetfromaxis': 0, 'xgap': 0.05, 'ygap': 0.15, 'zgap': 0.0}, 'modulefile': 'objects\\test-module.rad', 'hpc': False, 'name': 'Scene0', 'gcr': 0.32999702705381034, 'text': '!xform -rx -15.0 -t 0 0 2.3 -a 20 -t 1.05 0 0 -a 7 -t 0 10.091 0 -i 1 -t -9.450000000000001 -30.272999999999996 0 -rz 90.0 -t 0 0 0 objects\\test-module.rad', 'radfiles': 'objects\\1axis15.0__C_1.86907_rtr_10.09100_tilt_-15.00000_20modsx7rows_origin0,0.rad', 'sceneDict': {'tilt': -15.0, 'gcr': 0.33, 'clearance_height': 1.869066289904303, 'azimuth': 90.0, 'nMods': 20, 'nRows': 7, 'modulez': 0.02, 'axis_tilt': 0, 'originx': 0, 'originy': 0}},
  'octfile': '1axis_15.0.oct',
  'Results': [{'rowWanted': 2,
    'modWanted': 9,
    'AnalysisObj': {'octfile': '1axis_15.0.oct', 'name': '1axis_15.0', 'hpc': False, 'modWanted': 9, 'rowWanted': 2, 'x': [21.463, 21.14134, 20.81969, 20.49804, 20.17638, 19.85473, 19.53308, 19.21142, 18.88977], 'y': [-1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05], 'z': [2.665031, 2.578845, 2.492658, 2.406471, 2.320284, 2.234098, 2.147911, 2.061724, 1.975537], 'rearZ': [2.643781, 2.557594, 2.471408, 2.385221, 2.299034, 2.212847, 2.126661, 2.040474, 1.954287], 'mattype': ['a8.1.a0.test-module.6457', 'a8.1.a0.test-module.6457', 'a8.1.a0.test-module.6457', 'a8.1.a0.test-module.6457', 'a8.1.triangle_3', 'a8.1.a1.test-module.6457', 'a8.1.a1.test-module.6457', 'a8.1.a1.test-module.6457', 'a8.1.a1.test-module.6457'], 'rearMat': ['a8.1.a0.test-module.2310', 'a8.1.a0.test-module.2310', 'a8.1.a0.test-module.2310', 'a8.1.a0.test-module.2310', 'a8.1.triangle_2', 'a8.1.a1.test-module.2310', 'a8.1.a1.test-module.2310', 'a8.1.a1.test-module.2310', 'a8.1.a1.test-module.2310'], 'Wm2Front': [1083.0416666666667, 1085.689, 959.0094333333333, 944.5213333333332, 1.1060516666666667, 908.4444333333334, 906.8478, 775.5269666666667, 773.9854], 'Wm2Back': [80.25064333333333, 79.27283666666666, 78.44835666666667, 70.97169333333333, 1.1493266666666664, 60.343469999999996, 73.75593333333333, 76.41439666666666, 79.91829], 'Back/FrontRatio': [0.07409739782489332, 0.07301608807916317, 0.08180135892160785, 0.07514030195862671, 1.0381870162639202, 0.0664249802859192, 0.08133211769518064, 0.09853209677931665, 0.10325541895826593], 'backRatio': [0.07409739782489332, 0.07301608807916317, 0.08180135892160785, 0.07514030195862671, 1.0381870162639202, 0.0664249802859192, 0.08133211769518064, 0.09853209677931665, 0.10325541895826593], 'rearX': [21.46869, 21.14704, 20.82538, 20.50373, 20.18208, 19.86042, 19.53877, 19.21712, 18.89546], 'rearY': [-1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05]},
    'Wm2Front': [1083.0416666666667,
     1085.689,
     959.0094333333333,
     944.5213333333332,
     1.1060516666666667,
     908.4444333333334,
     906.8478,
     775.5269666666667,
     773.9854],
    'Wm2Back': [80.25064333333333,
     79.27283666666666,
     78.44835666666667,
     70.97169333333333,
     1.1493266666666664,
     60.343469999999996,
     73.75593333333333,
     76.41439666666666,
     79.91829],
    'backRatio': [0.07409739782489332,
     0.07301608807916317,
     0.08180135892160785,
     0.07514030195862671,
     1.0381870162639202,
     0.0664249802859192,
     0.08133211769518064,
     0.09853209677931665,
     0.10325541895826593]}]},
 -45.0: {'csvfile': 'EPWs\\1axis_-45.0.csv',
  'surf_azm': 90.0,
  'surf_tilt': 45.0,
  'datetime': Index(['2021-05-15 07:00:00', '2021-05-16 07:00:00', '2021-05-17 07:00:00',
         '2021-05-18 07:00:00', '2021-05-19 07:00:00', '2021-05-20 07:00:00',
         '2021-05-21 07:00:00', '2021-05-22 07:00:00'],
        dtype='object'),
  'count': 8,
  'skyfile': 'skies\\1axis_-45.0.rad',
  'radfile': 'objects\\1axis-45.0__C_1.12267_rtr_10.09100_tilt_45.00000_20modsx7rows_origin0,0.rad',
  'scene': {'module': {'x': 1.0, 'y': 1.59, 'z': 0.02, 'modulematerial': 'black', 'scenex': 1.05, 'sceney': 3.33, 'scenez': 0.0, 'numpanels': 2, 'bifi': 0.9, 'text': '! genbox black test-module 1.0 1.59 0.02 | xform -t -0.5 -1.665 0 -a 2 -t 0 1.74 0\n!xform -rz 0 C:\\Users\\sayala\\Documents\\GitHub\\bifacial_radiance\\tests\\customTT.rad | xform -rz 90 -t 0.5 0 -0.15', 'modulefile': 'objects\\test-module.rad', 'glass': False, 'offsetfromaxis': 0, 'xgap': 0.05, 'ygap': 0.15, 'zgap': 0.0}, 'modulefile': 'objects\\test-module.rad', 'hpc': False, 'name': 'Scene0', 'gcr': 0.32999702705381034, 'text': '!xform -rx 45.0 -t 0 0 2.3 -a 20 -t 1.05 0 0 -a 7 -t 0 10.091 0 -i 1 -t -9.450000000000001 -30.272999999999996 0 -rz 90.0 -t 0 0 0 objects\\test-module.rad', 'radfiles': 'objects\\1axis-45.0__C_1.12267_rtr_10.09100_tilt_45.00000_20modsx7rows_origin0,0.rad', 'sceneDict': {'tilt': 45.0, 'gcr': 0.33, 'clearance_height': 1.1226672093243981, 'azimuth': 90.0, 'nMods': 20, 'nRows': 7, 'modulez': 0.02, 'axis_tilt': 0, 'originx': 0, 'originy': 0}},
  'octfile': '1axis_-45.0.oct',
  'Results': [{'rowWanted': 2,
    'modWanted': 9,
    'AnalysisObj': {'octfile': '1axis_-45.0.oct', 'name': '1axis_-45.0', 'hpc': False, 'modWanted': 9, 'rowWanted': 2, 'x': [21.13853, 20.90307, 20.6676, 20.43213, 20.19667, 19.9612, 19.72573, 19.49027, 19.2548], 'y': [-1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05], 'z': [1.372983, 1.60845, 1.843916, 2.079383, 2.314849, 2.550316, 2.785782, 3.021249, 3.256715], 'rearZ': [1.357427, 1.592893, 1.82836, 2.063826, 2.299293, 2.534759, 2.770226, 3.005693, 3.241159], 'mattype': ['a8.1.a0.test-module.6457', 'a8.1.a0.test-module.6457', 'a8.1.a0.test-module.6457', 'a8.1.a0.test-module.6457', 'a8.1.triangle_3', 'a8.1.a1.test-module.6457', 'a8.1.a1.test-module.6457', 'a8.1.a1.test-module.6457', 'a8.1.a1.test-module.6457'], 'rearMat': ['a8.1.a0.test-module.2310', 'a8.1.a0.test-module.2310', 'a8.1.a0.test-module.2310', 'a8.1.a0.test-module.2310', 'a8.1.triangle_2', 'a8.1.a1.test-module.2310', 'a8.1.a1.test-module.2310', 'a8.1.a1.test-module.2310', 'a8.1.a1.test-module.2310'], 'Wm2Front': [1443.4093333333333, 1956.3326666666665, 2008.4436666666668, 2046.6146666666666, 2.0179886666666667, 2025.361, 2041.8626666666667, 2022.6586666666665, 2037.9873333333335], 'Wm2Back': [154.7415, 157.84713333333335, 147.35456666666667, 88.08065999999998, 2.000605666666667, 156.8592, 161.33876666666666, 163.696, 167.8751], 'Back/FrontRatio': [0.10720548164751488, 0.08068517964130524, 0.07336750128706558, 0.04303722552044049, 0.9908949464137657, 0.07744748839960461, 0.07901544520357301, 0.08093106452741515, 0.0823729445621622], 'backRatio': [0.10720548164751488, 0.08068517964130524, 0.07336750128706558, 0.04303722552044049, 0.9908949464137657, 0.07744748839960461, 0.07901544520357301, 0.08093106452741515, 0.0823729445621622], 'rearX': [21.12298, 20.88751, 20.65204, 20.41658, 20.18111, 19.94564, 19.71018, 19.47471, 19.23924], 'rearY': [-1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05]},
    'Wm2Front': [1443.4093333333333,
     1956.3326666666665,
     2008.4436666666668,
     2046.6146666666666,
     2.0179886666666667,
     2025.361,
     2041.8626666666667,
     2022.6586666666665,
     2037.9873333333335],
    'Wm2Back': [154.7415,
     157.84713333333335,
     147.35456666666667,
     88.08065999999998,
     2.000605666666667,
     156.8592,
     161.33876666666666,
     163.696,
     167.8751],
    'backRatio': [0.10720548164751488,
     0.08068517964130524,
     0.07336750128706558,
     0.04303722552044049,
     0.9908949464137657,
     0.07744748839960461,
     0.07901544520357301,
     0.08093106452741515,
     0.0823729445621622]}]},
 -15.0: {'csvfile': 'EPWs\\1axis_-15.0.csv',
  'surf_azm': 90.0,
  'surf_tilt': 15.0,
  'datetime': Index(['2021-05-23 06:00:00', '2021-05-24 06:00:00', '2021-05-25 06:00:00',
         '2021-05-26 06:00:00', '2021-05-27 06:00:00', '2021-05-28 06:00:00',
         '2021-05-29 06:00:00', '2021-05-30 06:00:00', '2021-05-31 06:00:00'],
        dtype='object'),
  'count': 9,
  'skyfile': 'skies\\1axis_-15.0.rad',
  'radfile': 'objects\\1axis-15.0__C_1.86907_rtr_10.09100_tilt_15.00000_20modsx7rows_origin0,0.rad',
  'scene': {'module': {'x': 1.0, 'y': 1.59, 'z': 0.02, 'modulematerial': 'black', 'scenex': 1.05, 'sceney': 3.33, 'scenez': 0.0, 'numpanels': 2, 'bifi': 0.9, 'text': '! genbox black test-module 1.0 1.59 0.02 | xform -t -0.5 -1.665 0 -a 2 -t 0 1.74 0\n!xform -rz 0 C:\\Users\\sayala\\Documents\\GitHub\\bifacial_radiance\\tests\\customTT.rad | xform -rz 90 -t 0.5 0 -0.15', 'modulefile': 'objects\\test-module.rad', 'glass': False, 'offsetfromaxis': 0, 'xgap': 0.05, 'ygap': 0.15, 'zgap': 0.0}, 'modulefile': 'objects\\test-module.rad', 'hpc': False, 'name': 'Scene0', 'gcr': 0.32999702705381034, 'text': '!xform -rx 15.0 -t 0 0 2.3 -a 20 -t 1.05 0 0 -a 7 -t 0 10.091 0 -i 1 -t -9.450000000000001 -30.272999999999996 0 -rz 90.0 -t 0 0 0 objects\\test-module.rad', 'radfiles': 'objects\\1axis-15.0__C_1.86907_rtr_10.09100_tilt_15.00000_20modsx7rows_origin0,0.rad', 'sceneDict': {'tilt': 15.0, 'gcr': 0.33, 'clearance_height': 1.869066289904303, 'azimuth': 90.0, 'nMods': 20, 'nRows': 7, 'modulez': 0.02, 'axis_tilt': 0, 'originx': 0, 'originy': 0}},
  'octfile': '1axis_-15.0.oct',
  'Results': [{'rowWanted': 2,
    'modWanted': 9,
    'AnalysisObj': {'octfile': '1axis_-15.0.oct', 'name': '1axis_-15.0', 'hpc': False, 'modWanted': 9, 'rowWanted': 2, 'x': [21.47387, 21.15221, 20.83056, 20.50891, 20.18725, 19.8656, 19.54395, 19.22229, 18.90064], 'y': [-1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05], 'z': [1.975537, 2.061724, 2.147911, 2.234098, 2.320284, 2.406471, 2.492658, 2.578845, 2.665031], 'rearZ': [1.954287, 2.040474, 2.126661, 2.212847, 2.299034, 2.385221, 2.471408, 2.557594, 2.643781], 'mattype': ['a8.1.a0.test-module.6457', 'a8.1.a0.test-module.6457', 'a8.1.a0.test-module.6457', 'a8.1.a0.test-module.6457', 'a8.1.triangle_3', 'a8.1.a1.test-module.6457', 'a8.1.a1.test-module.6457', 'a8.1.a1.test-module.6457', 'a8.1.a1.test-module.6457'], 'rearMat': ['a8.1.a0.test-module.2310', 'a8.1.a0.test-module.2310', 'a8.1.a0.test-module.2310', 'a8.1.a0.test-module.2310', 'a8.1.triangle_2', 'a8.1.a1.test-module.2310', 'a8.1.a1.test-module.2310', 'a8.1.a1.test-module.2310', 'a8.1.a1.test-module.2310'], 'Wm2Front': [264.48873333333336, 266.5425, 262.04519999999997, 262.3268666666666, 0.5987686666666666, 278.683, 281.45250000000004, 282.1493666666667, 281.71840000000003], 'Wm2Back': [37.9955, 36.95895333333333, 35.468806666666666, 28.992590000000003, 0.44985729999999996, 34.19477333333334, 37.31231, 39.20162333333334, 39.95183666666667], 'Back/FrontRatio': [0.14365585960992563, 0.1386601186422979, 0.135353257046531, 0.11052043524159848, 0.750051353132819, 0.12270088463397016, 0.13257006930096799, 0.1389387644484129, 0.14181428991637307], 'backRatio': [0.14365585960992563, 0.1386601186422979, 0.135353257046531, 0.11052043524159848, 0.750051353132819, 0.12270088463397016, 0.13257006930096799, 0.1389387644484129, 0.14181428991637307], 'rearX': [21.46817, 21.14652, 20.82487, 20.50321, 20.18156, 19.85991, 19.53825, 19.2166, 18.89495], 'rearY': [-1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05, -1.05]},
    'Wm2Front': [264.48873333333336,
     266.5425,
     262.04519999999997,
     262.3268666666666,
     0.5987686666666666,
     278.683,
     281.45250000000004,
     282.1493666666667,
     281.71840000000003],
    'Wm2Back': [37.9955,
     36.95895333333333,
     35.468806666666666,
     28.992590000000003,
     0.44985729999999996,
     34.19477333333334,
     37.31231,
     39.20162333333334,
     39.95183666666667],
    'backRatio': [0.14365585960992563,
     0.1386601186422979,
     0.135353257046531,
     0.11052043524159848,
     0.750051353132819,
     0.12270088463397016,
     0.13257006930096799,
     0.1389387644484129,
     0.14181428991637307]}]}}
In [ ]: